Skip to content

Instantly share code, notes, and snippets.

@mazurio
Created April 25, 2015 18:07
Show Gist options
  • Save mazurio/bdac961b491c2db09d1a to your computer and use it in GitHub Desktop.
Save mazurio/bdac961b491c2db09d1a to your computer and use it in GitHub Desktop.
int x = 0;
while(x <= 10) {
printf("%d \n", x);
x++;
}
for(int i = 0; i <= 10; i++) {
printf("%d\n", i);
}
int d = 0;
do {
printf("%d\n", d);
d++;
} while(d < 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment