Here you will get C++ program to print table on any number. The user will enter a number and its table will be printed.
#include<iostream>
using namespace std;
int main()
{
int i,n;
cout<<"Enter any number:";
cin>>n;
for(i=1;i<=10;++i)
cout<<"\n"<<n<<" * "<<i<<" = "<<n*i;
return 0;
}
Output
Enter any number:6
6 * 1 = 6
6 * 2 = 12
6 * 3 = 18
6 * 4 = 24
6 * 5 = 30
6 * 6 = 36
6 * 7 = 42
6 * 8 = 48
6 * 9 = 54
6 * 10 = 60

this isn't a table
Back word table print in c++ program
simple let i = 10; i > 0; –i;
Explain how you get it explain one by one
Thanks for the code
thank you very very much. for this code i like developing .its very simple code.