What is cout flush?
No Answer is Posted For this Question
Be the First to Post Answer
List different attributes in C++?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
Explain the difference between static and dynamic binding of functions?
What is pair in c++?
Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?
Define macro.
How to defines the function in c++?
How to detect memory leaks in c++
What is OOPs
Explain virtual destructor?
How can a '::' operator be used as unary operator?
What is null pointer and void pointer and what is their use?