S
shekh
#include<iostream.h>
#include<conio.h>
void main()
{
int num,a,i;
cout<<"Enter the number : ";
cin>>num;
cout<<"The table of that number is : ";
for(i=1;i<=num;i++)
{
a=i*num;
cout<<"\n"<<a<<"\n";
}
getch();
}
#include<conio.h>
void main()
{
int num,a,i;
cout<<"Enter the number : ";
cin>>num;
cout<<"The table of that number is : ";
for(i=1;i<=num;i++)
{
a=i*num;
cout<<"\n"<<a<<"\n";
}
getch();
}