Skip to content

Instantly share code, notes, and snippets.

Created February 7, 2012 01:51
#include <stdio.h>
int main(int argc, char** args){
multi(2);
return 0;
}
int multi(int x){
int y;
y = 1;
while(y <= 10){
printf("%d * %d = %d\n", x, y, x*y);
y++;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment