-
What will be the output of the following C code?
#include <stdio.h>
#include <stdlib.h>
int main()
{
srand(1000);
printf("%d\n", rand());
return 0;
}
-
- A double in the range 0 to 1
- Compilation Error
- A float in the range 0 to 1
- An integer in the range 0 to RAND_MAX
- None of these
Correct Option: D
An integer in the range 0 to RAND_MAX