What is fflush c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is scope operator in c++?
What is doubly linked list in c++?
What are function prototypes?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
What is the best free c++ compiler for windows?
What is this weird colon-member (" : ") syntax in the constructor?
What do you mean by a template?
what is the use of templates?
What does flush do?
Define a nested class. Explain how it can be useful.
How would you represent an error detected during constructor of an object?
Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;