Identify the correct argument for the function call fflush
() in ANSI C:
A)stdout
B)stdin
C)stderr
D)All the above
Answer Posted / johnson
Wrong, fflush can be applied to any output stream. Stdout and
stderr, as well as any writeable FILE* will work.
| Is This Answer Correct ? | 25 Yes | 3 No |
Post New Answer View All Answers
Define Array of pointers.
Are enumerations really portable?
What is static identifier?
Why void is used in c?
Can we use visual studio for c?
What are type modifiers in c?
What are keywords in c with examples?
Is c pass by value or reference?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
List some basic data types in c?
How do you define a string?
What is the difference between exit() and _exit() function?
Can we declare variable anywhere in c?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
Which is better between malloc and calloc?