7. Identify the correct argument for the function call
fflush() in ANSI C:
A)stdout
B)stdin
C)stderr
D)All the above
Answer Posted / ar
b but not recommended
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you define a string?
What is declaration and definition in c?
What is function in c with example?
Where static variables are stored in c?
Why do we use static in c?
Explain logical errors? Compare with syntax errors.
What is a function in c?
What are the types of unary operators?
What are the different types of constants?
What is chain pointer in c?
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); } }
How can you tell whether two strings are the same?
What is the difference between far and near in c?
what will be the output for the following main() { printf("hi" "hello"); }
Explain argument and its types.