What is the output of this code?
    #include stdio.h
#include stdlib.h
#include time.h
int main ()
{
srand (time(NULL));
printf ("Number: %d\n", rand() % 1000);
srand (1);
return 0;
}

Posted on by