R
Q. Predict the output of following C++ program. #include<iostream> using namespace std; class Empty {}; int main() { cout << sizeof(Empty); return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. What is used to read from the console in C++?
Q. Which of the following is the correct way to define a structure in C++?
Q. In C++ default return type for all the functions is ‐‐‐‐‐‐‐‐‐.
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x & y);
Q. A one-dimensional array contains one-dimensional arrays is called
Q. In nested try block, if inner catch handler gets executed, then _____________ .
Q. For finding value in an array which of the following technique is used?
Q. What is the output of the following C++ code?
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x ^= y);
Discusssion
Login to discuss.