move to repo.or.cz
[letusc.git] / ch3 / examples / exa7.c
blob18ab4a7ebaa5d919886935ebbbe94ba0f3ca9c89
1 /*another way form of for loop to print the numbers*/
3 #include<stdio.h>
5 int main()
7 int i=1;
8 for(;i<=10;i++)
10 printf("%d\n",i);
12 return 0;