What is constant keyword in C++? Illustrate its various uses.
No Answer is Posted For this Question
Be the First to Post Answer
How can you force the compiler to not generate them?
dynamic scoping is
What is latest update of C++ ?
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-; } }
Is deconstructor overloading possible? If yes then explain and if no Then why?
What are the different scope C++ provide ?
Is there a difference between class and struct?
When would you choose to return an error code rather than throw an exception?
What are issues if we mix new and free in C++?
Question on Copy constructor.
Define namespace.
What are the fundamental features of an object-oriented language?