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 / rakesh ranjan
i m damm sure about hits answer
B)stdin
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Why is c so important?
Why n++ execute faster than n+1 ?
What is scope rule of function in c?
Add Two Numbers Without Using the Addition Operator
What are header files in c?
What does the && operator do in a program code?
Explain what is the difference between functions getch() and getche()?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What are the types of pointers in c?
How do we declare variables in c?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
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
I have seen function declarations that look like this
Can an array be an Ivalue?