S
Q. What is the output of this program?
#include using namespace std; int main() { float num0 = 10.6; double num1 = 10.6; if (num0 == 10.6f) cout << "Arun"; else cout << "Sharma"; 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 concepts does the Pre Increment use?
Q. When are the pointer types known for upcasting the objects?
Q. Which of the following C++ features is used to achieve polymorphism?
Q. Which of the following is the correct syntax to include a C++ library?
Q. What is the output of the following C++ code?
Q. When can we have two classes with same name?
Q. How much bytes of memory does void occupy?
Q. Copy constructor must receive its arguments by __________ .
Q. What should be the output of below program?
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x <= y);
Discusssion
Login to discuss.