Program to Print Random numbers in c
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
‹
›
Home
View web version
No comments:
Post a Comment