What are manipulators used for?
No Answer is Posted For this Question
Be the First to Post Answer
Why is c++ not purely object oriented?
What is the use of object in c++?
What are the comments in c++?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
Do you know what are pure virtual functions?
What is function overloading in C++?
Why are pointers used?
What is an undefined behavior and sequence points
what is the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?
What is the best c++ book for beginners?
Write the program form Armstrong no in c++?
How do you flush a buffer in c++?