Skip to content

Instantly share code, notes, and snippets.

@hogelog
Forked from anonymous/gist:344739
Created March 26, 2010 14:49
Show Gist options
  • Save hogelog/344968 to your computer and use it in GitHub Desktop.
Save hogelog/344968 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