Skip to content

Instantly share code, notes, and snippets.

@catupper
Created September 21, 2011 16:39
Show Gist options
  • Save catupper/1232581 to your computer and use it in GitHub Desktop.
Save catupper/1232581 to your computer and use it in GitHub Desktop.
#include<stdio.h>
int main(){
int a,b;
for(a=1;a<=9;a++){
for(b=1;b<=9;b++){
printf("%dx%d=%d\n",a,b,a*b);
}
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment