Identify the correct argument for the function call fflush
() in ANSI C:
A)stdout
B)stdin
C)stderr
D)All the above
Answer Posted / vinay
BOTH A AND B
The function fflush() clears the buffer associated with a
specified input/output device(stdin or stdout).
Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
How can you read a directory in a C program?
What is the scope of local variable in c?
What is the stack in c?
How can I copy just a portion of a string?
What is cohesion and coupling in c?
What are the types of unary operators?
What do you understand by normalization of pointers?
Is c is a low level language?
How do I convert a string to all upper or lower case?
Do you know what are bitwise shift operators in c programming?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
a program that can input number of records and can view it again the record
What are compound statements?
What is new line escape sequence?
What is the difference between the expression “++a” and “a++”?