A
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x < y);
The less-than operator (<) returns true (1) if the first operand is less than the second.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. The operands and the operators are grouped in a specific logical way of evaluation is called ____
Q. What is the output of this program?
Q. Which of the following statement is correct whenever an object goes out of scope?
Q. To perfor file input / output operation in C++, we must include which header file ?
Q. What is used to write multi line comment in c++?
Q. The function used to display one line at a time
Q. Which of the following is the correct way of declaring a function as constant?
Q. What is the output of the following code snippet? int x = 5; int y = x++; cout << y;
Discusssion
Login to discuss.