Skip to content

Instantly share code, notes, and snippets.

@binki
Created October 14, 2017 17:18
Show Gist options
  • Select an option

  • Save binki/b69b6b01ad825407a41d073cfc6bcbff to your computer and use it in GitHub Desktop.

Select an option

Save binki/b69b6b01ad825407a41d073cfc6bcbff to your computer and use it in GitHub Desktop.
gcc -Wall -o cForLoop cForLoop.c
#include <stdio.h>
int main(int argc, const char *const argv[]) {
for (int i = 0; i < 4; i++) {
printf("i=%d\n", i);
}
}
i=0
i=1
i=2
i=3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment