R
Q. What is the output of this program?
#include using namespace std; enum test { p = 20, q, r }; int main() { cout << p <<" " << q<< " " << r; 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 correct syntax of accessing a static member of a class in C++?
Q. Which among the following is a mandatory condition for downcasting?
Q. Value of ix+j, if i,j are integer type and ix long type would be
Q. Which of the following correctly describes a friend function in C++?
Q. What will be the output of the following C++ function?
Q. Which of the following is not recommended in a header file?
Q. A ‐‐‐‐‐‐‐‐ is a physical device that exists at run time.
Q. How C++ compiler does differ between overloaded postfix and prefix operators?
Discusssion
Login to discuss.