Vidyalelo
C++ Programming · Q122

Variables and Data Types in C++

Programming · C++ Programming · question 122

Q122

What will be the output of the following C++ code? #include using namespace std; enum test A = 32, B, C ; int main() cout << A << B<< C; return 0;

A.
323334
Answer
B.
323232
C.
323130
D.
323134

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board