What is C++11?
Answer / nashiinformaticssolutions
C++11 is a major update to the C++ language, introducing features like lambda expressions, smart pointers, nullptr, std::thread, and more.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain function prototypes in C++.
Write a C++ Program to Reverse a Number using while loop.
What does it mean to declare a member function as static in C++?
Can we call a virtual function from a constructor?
How will you execute a stack using a priority queue? (Push and pop should be in O (1)).
Without using third variable write a code to swap two numbers.
Discuss about iteration statements in C++ .
What is an algorithm (in terms of the STL/C++ standard library)?
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-; } }
C++ Public access specifier instead of Private – What is bad ?
Mention the default functions in C++, how would you detect that error has occurred inside the constructor and destructor.
Explain why C++ is not purely Object Oriented Language