diff --git a/Print Table.cpp b/Print Table.cpp new file mode 100644 index 0000000..6fae572 --- /dev/null +++ b/Print Table.cpp @@ -0,0 +1,21 @@ +/* C++ program to Print Multiplication Table of a given number */ + +#include +using namespace std; + +int main() +{ + int i,n,table=1; + + cout<<"Enter any positive number :: "; + cin>>n; + + cout<<"\nMultiplication Table of a given number [ "<