+ 1
how to creat maltiple loop that will work at the same time
i need multiple loop working at the same time
4 Answers
+ 1
for (int a = 0; a < 10; a++)
{
for (int b = 0; b < 10; b++)
{
printf ("(%d, %d)\n", a, b);
}
}
+ 1
for that I think u should use threads....
looke it up on Google or something
0
what is threads...???
0
is that a function...???