Your IP : 216.73.216.40


Current Path : /var/www/html/prashantkr/TurboC/TCWIN45/BIN/
Upload File :
Current File : /var/www/html/prashantkr/TurboC/TCWIN45/BIN/table.cpp

//prg for printing of table from 2 to 10 column wise
#include<stdio.h>
#include<conio.h>
void main()
{
	int i,j,tab;

	clrscr();
	for(i=1;i<=10;i++)
	{
		for(j=2;j<=10;j++)
		{
			tab=i*j;
			printf("%d \t",tab);
		}
		printf("\n");
	}
	getch();
}