Identify the correct argument for the function call fflush
() in ANSI C:
A)stdout
B)stdin
C)stderr
D)All the above
Answer Posted / karthik
c
| Is This Answer Correct ? | 10 Yes | 7 No |
Post New Answer View All Answers
When should a far pointer be used?
Hai what is the different types of versions and their differences
Write a program to generate random numbers in c?
In a byte, what is the maximum decimal number that you can accommodate?
What is a scope resolution operator in c?
Write a program to swap two numbers without using third variable in c?
What are examples of structures?
Why #include is used in c language?
How a string is stored in c?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Is c procedural or functional?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Why shouldn’t I start variable names with underscores?
How can I run c program?
Is there a built-in function in C that can be used for sorting data?