What is a manipulator in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between a copy constructor and an assignment operator.
Is there any problem with the following: char *a=NULL; char& p = *a;?
C is to C++ as 1 is to a) What the heck b) 2 c) 10
If there are 1 to 100 Numbers in array of 101 elements. Which is the easy way to find repeated number?
What is the purpose of decltype?
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
describe private access specifiers?
What does catch(…) mean?
Why c++ is called oop?
How do you define a class in c++?
Is c++ an oop?