Thursday, July 25, 2019

create any number of table.

Tags

Create any number of table:


create any number of table.


#include<stdio.h>
#include<conio.h>

void main()
{
int no,i;
clrscr();
printf("Enter A Number:- ");
scanf("%d",&no);

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

printf("%d*%d=%d\n",no,i,(no*i));
}
getch();
}

Output:





EmoticonEmoticon