source: branches/libc-0.6/src/emx/testcase/misc/args-1.c

Last change on this file was 1850, checked in by bird, 20 years ago

* empty log message *

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 153 bytes
Line 
1#include <stdio.h>
2
3int main(int argc, char **argv)
4{
5 int i;
6 for (i = 0; i < argc; i++)
7 printf("%2d: %s\n", i, argv[i]);
8 return 0;
9}
Note: See TracBrowser for help on using the repository browser.