home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT76.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-25  |  381 b   |  14 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat76.c                                              */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <direct.h>
  6.  
  7. void main()
  8. {
  9.    char buffer[PATH_MAX];
  10.  
  11.    getcwd(buffer, PATH_MAX);
  12.    printf("Ñ╪½eñºÑ╪┐²¼░ : %s\n", buffer);
  13. }
  14.