Source Code:-
#include<conio.h>
void main()
{ clrscr();
int n;
cout<<"Print Table Of any no. (by: Tarun Rawat)\n\n";
cout<<"Enter number to print it's table = ";
cin>>n;
for(int i=1;i<=20;i++)
{cout<<"\n"<<n<<"*"<<i<<" = "<<n*i;
}
getch();
}
Welcome to " way2cplusplus.blogspot.in " Objective of this blog is to implement various Computer Science Engineering Lab problems into C++ programming language. These are basically most common Lab Exercise problems based on the curriculum of engineering colleges throughout the Nation. These lab exercises are also relevant to Data structure. Simply C++ programming zone...
This article gives the light in which we can observe the reality. This is very nice one and gives indepth information. Thanks for this nice article. Multiplication chart
ReplyDelete