What will be the output of the following C++ code?
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
srand((unsigned)time(0));
int ran;
int low = 1, high = 10;
int range = (high - low) + 1;
for(int index = 0; index < 1; index++)
{
ran = low + int(range * rand() / (RAND_MAX + 1.0));
cout << ran << endl;
}
}
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main()
{
srand((unsigned)time(0));
int ran;
int low = 1, high = 10;
int range = (high - low) + 1;
for(int index = 0; index < 1; index++)
{
ran = low + int(range * rand() / (RAND_MAX + 1.0));
cout << ran << endl;
}
}A. 1
B. 2
C. 3
D. 4
Answer: Option A

Join The Discussion