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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat47.c                                              */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <dos.h>
  6.  
  7. void main()
  8. {
  9.  unsigned cur_drive;
  10.  _dos_getdrive(&cur_drive);
  11.  printf("Ñ╪½e⌐╥ªbñº║╧║╨╛≈¼░  %c\n", 'A'+cur_drive-1);
  12. }
  13.  
  14.