#include<conio.h>
#include<stdio.h>
void main()
{
int n,i=1,c;
clrscr();
printf("enter the no");
scanf("%d",&n);
for (i=0;i<=10;i++)
{
c=n*i;
printf("%d * %d= %d\n",n,i,c);
}
getch();
}
Download from Here
#include<stdio.h>
void main()
{
int n,i=1,c;
clrscr();
printf("enter the no");
scanf("%d",&n);
for (i=0;i<=10;i++)
{
c=n*i;
printf("%d * %d= %d\n",n,i,c);
}
getch();
}
Download from Here
No comments:
Post a Comment