Aşağıda 'for' stilinin bir örneği verilmiştir:
```c
int i, n;
for (i =1, n =10; i <=n; i++)
printf("%2d", i);
''''