Write a program to multiply 10 integers 10,100 and 1000.

 

#include<stdio.h>

#include<conio.h>

int main()

{

int N;

printf(“N\tN*10\tN*100\tN*1000\n”);

for(N=1;N<=10;N++)

{

printf(“%d\t%d\t%d\t%d\n”,N,N*10,N*100,N*1000);

}

getch();

return 0;

}

< out will be >

N        N*10      N*100    N*1000

1          10          100             1000

2          20          200             2000

3          30          300             3000

4          40          400             4000

5          50          500             5000

6          60          600             6000

7          70          700             7000

8          80          800             8000

9          90          900             9000

10        100        1000           10000