Skip to content

Instantly share code, notes, and snippets.

@kaworun
Created February 11, 2013 16:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaworun/4755610 to your computer and use it in GitHub Desktop.
Save kaworun/4755610 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void) {
int i, j;
for (i=1; i<=9; i++) {
for (j = 1; j <=9; j++) {
printf("%d * %d = %d\n", i, j, i*j);
}
puts("");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment