Skip to content

Instantly share code, notes, and snippets.

@cr3denza

cr3denza/while.c Secret

Created April 2, 2015 01:04
#include <stdio.h>
int main(){
int i=0;
while(i < 10){
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