Skip to content

Instantly share code, notes, and snippets.

@vojto
Created March 17, 2010 14:25
Show Gist options
  • Save vojto/335278 to your computer and use it in GitHub Desktop.
Save vojto/335278 to your computer and use it in GitHub Desktop.
void doubleToTen() {
int i;
for(i=1; i<=10; i++) {
printf("%d\n", i*2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment