1.

What is the output of this program?
#include 
using namespace std;
enum test
{
p = 20, q, r
};
int main()
{
cout << p < return 0;
}

A. 20 21
B. 21 22
C. 20 21 22
D. 20 22
E. None of these
Answer» D. 20 22


Discussion

No Comment Found

Related MCQs