Skip to content

Instantly share code, notes, and snippets.

@kokosabu
Created September 3, 2014 14:39
Show Gist options
  • Save kokosabu/fbd73dad3e035b75966d to your computer and use it in GitHub Desktop.
Save kokosabu/fbd73dad3e035b75966d to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main()
{
int i;
i = 1;
while( i <= 100) {
printf("%d\n", i);
i++;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment