R
Q. What is the output of this program?
#include using namespace std; enum Gender { male, female, transgender }; int main() { cout << male<< female<< transgender; 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 of the following is the correct way to define a move assignment operator in C++?
Q. Which of the following is the correct way to define a function with an override specifier in C++?
Q. Which of the following is not true about preprocessor directives?
Q. What is the output of this program?
Q. A language able to generate new data types is called
Q. ____ operators have lower precedence to relational and arithmetic operators.
Q. Which of the following is not a valid loop statement in C++?
Q. OOPs follows ‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐ approach during program design.
Discusssion
Login to discuss.