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 / senthilkumar
NON OF THIS
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Which is the memory area not included in C program? give the reason
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
What are the primitive data types in c?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
why do some people write if(0 == x) instead of if(x == 0)?
Can include files be nested?
Are the variables argc and argv are local to main?
How can I open a file so that other programs can update it at the same time?
Explain the use of keyword 'register' with respect to variables.
What is a void pointer? When is a void pointer used?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What kind of structure is a house?
What does calloc stand for?
What is difference between array and pointer in c?
Can a pointer be static?