UnivesalDisassembler(2003)

numbers.c

Go to the documentation of this file.
00001 #include <stdio.h>
00002 
00003 int main(int argc, char *argv[])
00004 {
00005     unsigned i;
00006     unsigned max;
00007     max = (argc>1) ? atoi(argv[1]) : 10;
00008     for (i=1;i<=max;i++)
00009         printf("i=%d\n", i);
00010     return 0;
00011 }