#include<stdio.h>
#include<conio.h>
void main(void)
{
clrscr();
int cols,rows;
for(rows=1;rows<=10;rows++)
{
for(cols=2;cols<3;cols++)
printf("%3d",cols*rows);
printf("\n");
}
getch();
}
/*remember :rows loop is arrived preceding int and after this cols loop,if you cant, your program doesn't work properly */
for increasing more tables inrement in rows and cols value
steay blessed