Documentation
1
2
3
4
5
6
int main() {
  int i;
  for (i = 0; i < 10; i++) {
    printf("%d\n", i);
  }
}