Search This Blog

Monday 29 August 2011

C-PRAOGRAMM to find the table of any number


#include<stdio.h>
#include<conio.h>
main()
{
int i=1,t;
clrscr();
printf("the multiplication table of ?");
scanf("%d",&t);
while(i<=10)
{
printf("\n %d*%d=%d",t,i,(t*i));
i++;
}
getch();
}

No comments:

Post a Comment