C++ Program to Print Table of Any Number
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 = …