Program to accept a number and print mathematical table of the given no - 100 Most Important C# Programs

100 Most Important C# Programs

13. Program to accept a number and print mathematical table of the given no.

Code:

# include <stdio.h>

# include <conio.h>

main( )

{

int i,t;

clrscr( );

printf(“which table u want:”);

scanf(“%d”,&t);

for (i=1; i<=10; i++)

printf(“\n%d*%d=%d”,t,i,i*t);

getch( );

}