What do manipulators do?
No Answer is Posted For this Question
Be the First to Post Answer
What is an iterator?
What is a constructor initializer list and when we use constructor initializer list?
What is stack unwinding?
Describe private, protected and public?
can anybody please tell me how to write a program in c++,without using semicolon(;)
Does c++ vector allocate memory?
Does c++ have string data type?
What is the most useful programming language?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
Explain how would you handle a situation where you cannot call the destructor of a local explicitly?
When one must use recursion function? Mention what happens when recursion functions are declared inline?
If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3