Program to print multiplication tables from 11 to 20.

Program to print multiplication tables from 11 to 20.

#include <tstdio.h>
#include <tconio.h>
void main()
{
int a, b;
clrscr();

for ( a=11; a<=20; a++)
{
printf ("The multiplication table of %d is: \n", a);

for ( b=1; b<=10; b++)
{
printf ("%d * %d = %d\n", a, b, a*b);
}
}
getch();
}