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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat194.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <string.h>
  5. #include <stdio.h>
  6. #include <ctype.h>
  7.  
  8. void main()
  9. {
  10.    int length, i;
  11.    char *str = "do you really want to make me cry !!!";
  12.  
  13.    length = strlen(str);
  14.    for (i=0; i<length; i++)
  15.    {
  16.        str[i] = toupper(str[i]);
  17.    }
  18.    printf("%s\n",str);
  19. }
  20.