Skip to content

Instantly share code, notes, and snippets.

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