Arts >> Art >> Performance Art

What is the style of for

The style of `for` is `expression(s)? ; statement-list++`.

The following is an example of the `for` style:

```c

int i, n;

for (i = 1, n = 10; i <= n; i++)

printf("%2d", i);

```

Performance Art

Related Categories