Program to display a multiplication table

This looks different ,but this says more about using loops and using loop variables.
Print a multiplication table for table 2

i
answer
1
2
2
4
3
6
4
8
5
10
6
12
7
14
8
16
9
18
10
20
Program code is
int i;
for(i=10;i>0;i--)
printf("%d x %d =%d\n",2,i,2*i);
This code prints 2 table for loop iterates from 1 to 10 and prints table in a reverse order
OUTPUT IS .
2 x 10 =20 2 x 9 =18 2 x 8 =16
2 x 7 =14 2 x 6 =12 2 x5 =10 2 x 4 =8 2 x 3 =6 2 x 2 =4 2 x 1 =2
Print 10 Multiplication table
code is
int j,i;
for(i=10;i>0;i--)
for(j=10;j>0;j--)
printf("%d x %d =%d\n",i,j,2*j);
Prints 10 tables up to 10 iterations.