Identify the correct argument for the function call fflush
() in ANSI C:
A)stdout
B)stdin
C)stderr
D)All the above
Answer Posted / pankaj goswami
d is the right ans because fflush contain all stdin for
standardinput,output and error.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What are the valid places to have keyword “break”?
How to create struct variables?
What is the use of header?
What is an array in c?
How to write c functions that modify head pointer of a linked list?
What is struct node in c?
What is c value paradox explain?
Explain what is meant by high-order and low-order bytes?
What is the data segment that is followed by c?
Write a program to generate random numbers in c?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
explain what is a newline escape sequence?
What is huge pointer in c?
Is c pass by value or reference?