home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libc / dos / echome.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-11  |  148 b   |  10 lines

  1. #include <stdio.h>
  2. int
  3. main(int argc, char **argv)
  4. {
  5.   int i;
  6.   for (i=0; i<argc; i++)
  7.     printf("%d: `%s'\n", i, argv[i]);
  8.   return 0;
  9. }
  10.