1.

What is the output of this program?
 #include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout << RAND_MAX << endl;
}

A. Depends on the compiler
B. Compilation Error
C. Runtime Error
D. Garbage value
E. None of these
Answer» B. Compilation Error


Discussion

No Comment Found

Related MCQs