R
Q. What is the output of below program?
int main() { if(0) { cout<<"Hi"; } else { cout<<"Hello"; } 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 the following C++ code?
Q. Which of the following are member dereferencing operators in CPP? 1. * 2. :: 3. ->* 4. ::* 5. ->
Q. In C++ Program, inline fuctions are expanded during ____
Q. Which of the following statements is correct?
Q. ‐‐‐‐‐‐‐‐ contains function prototype for the standard input and output functions.
Q. What does the following statement mean?
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (x != y);
Q. Which of the following is the correct way to allocate memory dynamically for an integer in C++?
Discusssion
Login to discuss.