#include<iostream.h> #include<conio.h> void main() { int a=1,no,table=1; clrscr(); cout<<"Enter any num: "; cin>>no; while(a< =10) { table=a*no; cout<<table; cout<<"\n"; a++; } getch(); }