R
Q. What is the output of the following code in C++?
#include <iostream> using namespace std; int main() { int a = 4; float b; cout << sizeof(++a + b) << endl; cout << a; 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 the output of this program?
Q. Classes which is used in CPP are:
Q. What is Self Referencial Structure?
Q. Identify the incorrect constructor type.
Q. Which of the following functions must use reference?
Q. While overloading binary operators using member function, it requires ___ argument/s.
Q. What is the output of the following code in C++?
Q. Which of the following is the correct way to define a union in C++?
Q. Which storage class defines local variable known to the block in which they are defined?
Discusssion
Login to discuss.