The following is an example of the `for` style:
```c
int i, n;
for (i = 1, n = 10; i <= n; i++)
printf("%2d", i);
```