wat does this code do?
#include <stdlib.h>
#include <stdio.h>
int main( void )
{
int j, s[100];
int srand(unsigned int s);
j = 1 + (rand() % 100);
printf( " %d\n", j );
return 0;
}
#include <stdlib.h>
#include <stdio.h>
int main( void )
{
int j, s[100];
int srand(unsigned int s);
j = 1 + (rand() % 100);
printf( " %d\n", j );
return 0;
}
Comment