Add a comment.
[tinycc.git] / tests / tests2 / 31_args.c
blobdcafed52b58a32c7a7f94e5f907a7ae6a9f74f7a
1 #include <stdio.h>
3 int main(int argc, char **argv)
5 int Count;
7 printf("hello world %d\n", argc);
8 for (Count = 1; 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 :*/