#include <stdio.h>main(){int x;printf("Input multiplications :");scanf("%d",&x);int y=1;while(y<=12){printf("%d*%d=%d\n",x,y,x*y);y++;}}
4
Input multiplications :4*1=4 4*2=8 4*3=12 4*4=16 4*5=20 4*6=24 4*7=28 4*8=32 4*9=36 4*10=40 4*11=44 4*12=48
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!