Answer Posted / kumaran
400
| Is This Answer Correct ? | 3 Yes | 46 No |
Post New Answer View All Answers
explain what are pointers?
Explain the term printf() and scanf() used in c language?
Explain two-dimensional array.
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What type is sizeof?
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); } }
Can a pointer point to null?
What is the scope of global variable in c?
What is the purpose of sprintf() function?
What is meant by int main ()?
Explain how can you restore a redirected standard stream?
What is a method in c?
Is main a keyword in c?
What is function prototype?
What do you mean by dynamic memory allocation in c? What functions are used?