Created
April 25, 2015 18:07
-
-
Save mazurio/bdac961b491c2db09d1a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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