Q. What is the output of the following C++ code?
Code:
#include <iostream>
using namespace std;
enum letter
{
A = 20, B, C
};
int main()
{
cout << A << B << C;
return 0;
}
β
Correct Answer: (A)
202122