Question

How to write a for loop in C?


Annonce
Ad

Answer

int i;
for (i=0;i<10;i++)
{
	// Do something with i
}


[source]
# ID Query