C programs
C Program that intializes the loop to produce a table of value (N 10*N 100*N 1000*N)
C Program that intializes the loop to produce a table of value
#include<stdio .h="">
#include<conio .h="">
void main()
{
int i,t1,t2,t3;
clrscr();
printf("\nN\t10*N\t100*N\t1000*N");
for(i=1;i<=9;i++)
{
t1=10*i;
t2=100*i;
t3=1000*i;
printf("\n%d\t%d\t%d\t%d",i,t1,t2,t3);
}
getch();
}
**************OUTPUT****************
N 10*N 100*N 1000*N
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</conio></stdio>