C++ program to Print Table of any Number



Output :

Enter any num : 5
Table of 5
5
10
15
20
25
30
35
40
45
50 

Program to print any numbr of table in C++



Output :

Enter any num: 2
Table
2
4
6
8
10
12
14
16
18
20