C Program To Print TABLE OF THE NUMBER FEEDED BY USER

Program by :- Jayant Purohit
#include<conio.h>
#include<stdio.h>
void main()
{
int table,n;
clrscr();
printf("Please enter the number whose table you want to Print:->");
scanf("%d",&table);
for(n=1;n<11;n++)
{
printf("\n\n%d MULTIPLIED BY %d IS :->%d",table,n,table*n);
}
getch();
}

No comments:

Post a Comment

Please write your Views about this Post here:->;

Pageviews last month