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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat129.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <direct.h>
  6.  
  7. void main()
  8. {
  9.    int status;
  10.  
  11.    status = mkdir("TEST");
  12.    if (!status)
  13.        printf("ñw½╪Ñ▀Ñ╪┐²\n");
  14.    else
  15.        printf("╡L¬k½╪Ñ▀Ñ╪┐²\n");
  16. }
  17.