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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat185.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <string.h>
  6.  
  7. void main(void)
  8. {
  9.    char *s1 = "abcdefghijkl*#@$%^&*!()**mnopqrstuvwxyz";
  10.    char *ptr;
  11.  
  12.    printf("¡∞⌐lªrªΩ¼░: %47s \nÑ■│í┬α┤½ª¿ñj╝g½ß¼░: ",s1);
  13.    ptr = strupr(s1);
  14.    printf("%s\n", ptr);
  15. }
  16.