Computer Science, asked by Aazish, 8 months ago

write a c++ program to print table of any number​

Answers

Answered by Viktg
0

I think you should learn C++ from YouTube

Answered by devadiksu
1
/* C++ Program - Print Table of Number */

#include
#include
void main()
{
clrscr();
int num, i, tab;
cout<<"Enter a number : ";
cin>>num;
cout<<"Table of "< for(i=1; i<=10; i++)
{
tab=num*i;
cout< }
getch();
}
Similar questions