7. Identify the correct argument for the function call
fflush() in ANSI C:
A)stdout
B)stdin
C)stderr
D)All the above
Answers were Sorted based on User's Feedback
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above
How can I find the day of the week given the date?
How can you tell whether a program was compiled using c versus c++?
without a terminator how can we print a message in a printf () function.
What is this pointer in c plus plus?
What is #ifdef ? What is its application?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
Why flag is used in c?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
When should volatile modifier be used?
c program to subtract between two numbers without using '-' sign and subtract function.
Why is extern used in c?