[solved] – Question 94638
Consider the following program and answer the following
for(int I =1; I<=10; I+=3)
printf (“%dn”I);
How many times the for loop executed?
Expert Answer
OR
Consider the following program and answer the following
for(int I =1; I<=10; I+=3)
printf (“%dn”I);
How many times the for loop executed?
OR