#include <stdio.h> int main() { int i; for (i = 0; i <= 10; i++) { printf("%d\n", i); i++; } }
godarda@gd:~$ gcc gd.cgodarda@gd:~$ ./a.out 0 2 4 6 8 10 godarda@gd:~$
#include <stdio.h> int main() { int i; for (i = 1; i <= 10; i++) { printf("%d\n", i); i++; } }
godarda@gd:~$ gcc gd.cgodarda@gd:~$ ./a.out 1 3 5 7 9 godarda@gd:~$