Write a C++ program to print the table of any number entered by the user up to 15 times where 15 should be a default value to the function
#include #include class abc { private: int n; public: void getdata() { cout<<"Enter the number: "; cin>>n; } void table(int); }; void abc :: table(int s) { int i,t; cout<<"\n"; for(i=1;i<=s;i++) cout<<" "<
