If you have some questions please send me an email at jake.r.pomperada@gmail.com and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Sample Program Output
Program Listing
#include <stdio.h>
main()
{
int x=0,y=0;
printf("\t\t Multiplication Table");
printf("\n\n");
for ( x=1; x<=12; x++) {
printf("\n");
for (y=1; y<=12; y++) {
printf(" %3d " ,x * y);
}
}
printf("\n\n");
}
No comments:
Post a Comment