What is the purpose of the fflush() function in C?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
fflush() clears the output/input buffer.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
fflush() clears the output/input buffer.vv
| Is This Answer Correct ? | 0 Yes | 0 No |
What are bitwise shift operators in c programming?
What is the scope of global variable in c?
I want tcs placement papers of 2004-2009 , its urgent
Explain what are multibyte characters?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
what do structure language means?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
What is output redirection?
Compare interpreters and compilers.
What is wild pointer in c?
what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7
What is #include conio h?