1.

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

A. 9383
B. 18042
C. 1804289383
D. 0 to RAND_MAX
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs