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
How can I discover how many arguments a function was actually called with?
if p is a string contained in a string?
Explain how do you determine whether to use a stream function or a low-level function?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
What are global variables and explain how do you declare them?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
What are volatile variables in c?
What are local static variables? How can you use them?
What is non linear data structure in c?
Why is c still so popular?
Why do we write return 0 in c?
How are pointers declared in c?
Explain how can you determine the size of an allocated portion of memory?
Explain about the constants which help in debugging?
Differentiate between the = symbol and == symbol?