Code Snippets C

#include
#include
#include
void main()
{
int x ;
srand((unsigned)time(NULL));
for(x=0;x<=100;x++)
printf("%i\t",rand()%10 + 1);
}