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

Read More Section(Variables and Data Types in C plus plus)

Each Section contains maximum 100 MCQs question on Variables and Data Types in C plus plus. To get more questions visit other sections.