R
Q. What is the output of the following C++ program?
#include <iostream> using namespace std; int main() { cout << sizeof(char); cout << sizeof(int); cout << sizeof(float); 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. Which operator is used with cin ?
Q. What happens if the following program is run in C and C++?
Q. ‐‐‐‐‐‐ refers to the use of the same thing for different purpose.
Q. Which of the following operators is used with a pointer to access members of a class?
Q. Which one is not a correct variable type in C++?
Q. What is the output of the following C++ program?
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x << 1);
Q. What will happen when defining the enumerated type?
Discusssion
Login to discuss.