Skip to content

Instantly share code, notes, and snippets.

@AndyNovo
Created March 20, 2017 16:46
Show Gist options
  • Save AndyNovo/9b564181fdd7ae820f6761956a97aad1 to your computer and use it in GitHub Desktop.
Save AndyNovo/9b564181fdd7ae820f6761956a97aad1 to your computer and use it in GitHub Desktop.
Same loop
#include "stdio.h"
int main() {
int i=0;
for ( ; i != 5 ; ){
printf("i = %d\n", i);
i = i+1;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment