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 / mj baig
b
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Write a program to swap two numbers without using a temporary variable?
What is data type long in c?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
How do shell structures work?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What is assignment operator?
What is string in c language?
What are the __date__ and __time__ preprocessor commands?
What is cohesion in c?
What are different types of operators?
What is the meaning of 2d in c?
how can I convert a string to a number?
What is a substring in c?
Is malloc memset faster than calloc?