Documentation
1
2
3
4
5
6
7
8
9
10
11
int main() {
  int i = 0;
  for (i = 0; i < 10; i++) {
    if (i < 5) {
      printf("Less than 5\n");
    } else {
      printf("Greater than or equal to 5\n");
    }
  }
  return i;
}