Revert "Add predictability in CType initialization."
[tinycc.git] / tests2 / 31_args.c
blob275f8cff23702dd457a6637286273e1568a9742d
1 #include <stdio.h>
3 int main(int argc, char **argv)
5 int Count;
7 printf("hello world %d\n", argc);
8 for (Count = 0; Count < argc; Count++)
9 printf("arg %d: %s\n", Count, argv[Count]);
11 return 0;
14 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/