Consider the following C++ program



Consider the following C++ program..

Answer / Jitendra Singh Saini

(Question does not provide a program for this QNO)

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ Interview Questions

How does stack look in function calls? When does stack overflow? What can you do to remedy it?

1 Answers   Adobe,


Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }

1 Answers  


What does it mean to take the address of a reference?

1 Answers   Amazon,


Define type casting in C++.

1 Answers   Amdocs,


Explain about Searching and sorting algorithms with complexities

1 Answers   Accenture,


What is Boyce Codd Normal form?

1 Answers   IBS,


What are pass by value and pass by reference?what is the disadvantage of pass by value?

1 Answers   Alter,


What is placement new?

2 Answers   Amazon,


Explain the importance of method overloading in C++?

1 Answers   Akamai Technologies, Infogain,


what do you mean by exception handling in C++?

1 Answers   Alter,


When would you use a pointer? A reference?

1 Answers   Amazon,


Mention the default functions in C++, how would you detect that error has occurred inside the constructor and destructor.

1 Answers   Adobe,


Categories