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 will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
How to implement variable argument functions ?
how to construct a simulator keeping the logical boolean gates in c
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
When would you use a pointer to a function?
Why we not create function inside function.
Explain the binary height balanced tree?
What does struct node * mean?
Describe how arrays can be passed to a user defined function
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What does c in a circle mean?