C Program to create Random Numbers (CPP)



#include
#include
#include
#include

int main(void)
{
int i,j;

for(j=0;j<150;j++)
{
// randomize();
for(i=0;i<200;i++)
printf("%d\n", rand() % MAXINT);
}
return 0;
}

No comments:

Post a Comment