Answer Posted / hemanthkumar
prinf("%""d");
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
If null and 0 are equivalent as null pointer constants, which should I use?
What are the types of i/o functions?
What are the different categories of functions in c?
c language interview questions & answer
What is a volatile keyword in c?
When can you use a pointer with a function?
What is the use of bitwise operator?
How to find a missed value, if you want to store 100 values in a 99 sized array?
Is c still used?
What are keywords c?
What are the different types of control structures?
Write a program that accept anumber in words
What is #include conio h?
Explain is it valid to address one element beyond the end of an array?