R
Q. What is the output of the following C++ program?
#include <iostream> using namespace std; int main() { int n1 = 10; float n2 = 10; cout << sizeof(n1 + n2); 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. Identify the user-defined types from the following?
Q. What happens if the following program is run in C and C++?
Q. Conversion of data type is called
Q. What is the output of the following code snippet? int x = 10; int y = 0; cout << (x || y);
Q. What will be the output of the following code? int a = 5; cout << ++a;
Q. Choose the option below which is not a member of class.
Q. Which of the following is not a valid file operation in C++?
Q. Which of the following is the most preferred way of throwing and handling exceptions?
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x -= y);
Discusssion
Login to discuss.