Yes, when loop body has single statement, than we can escape curly braces "{...}".
Consider the example:
Yes, when loop body has single statement, than we can escape curly braces "{...}".
Consider the example:
1
2
|
for (i=1;i<=10;i++)
printf ( "\n%d " ,i);
|