How to print table of any number in C++ Program

CWC
0 Min Read

C++ Program to print table of any number

#include
#include
using namespace std;
int main()
{
int i,n;
cout<<"Enter number for which you want to generate table:";
cin>>n; cout<<"\n\n";
for(i=1;i<=10;++i)
cout<<"\t"<
Share This Article
Leave a comment

Leave a Reply

Your email address will not be published. Required fields are marked *

English
Exit mobile version