what is the use of fflush() function?
Answers were Sorted based on User's Feedback
Answer / kamini
the fflush() function is useed for remove the garbage value
of keyboard.
| Is This Answer Correct ? | 15 Yes | 5 No |
Answer / varun sahu
the fflush() function is used to remove garbage which is present in the buffer.
| Is This Answer Correct ? | 12 Yes | 2 No |
What is the value of uninitialized variable in c?
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
What is a lvalue
What are inbuilt functions in c?
State two uses of pointers in C?
can we declare a function in side the structure?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
Explain a file operation in C with an example.
write a program to sort the elements in a given array in c language
What will be the outcome of the following conditional statement if the value of variable s is 10?
How can I do serial ("comm") port I/O?
how to find string length wihtout using c function?