Can a constructor throw a exception? How to handle the error when the constructor fails?
Define stacks. Provide an example where they are useful.
Mention the storage classes in c++.
What is size of string in c++?
What are static variables?
What is function prototyping? What are its advantages?
Does improper inheritance have a potential to wreck a project?
Define namespace 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; }
How to create a reference variable in C++
What is the return value of the insertion operator?
Why we use #include conio h in c++?
What is the difference between an external iterator and an internal iterator?