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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat169.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <string.h>
  6.  
  7. void main()
  8. {
  9.    char *string1 = "FoxPro 2.0 ╡{ªí│]¡p---ñJ¬∙╜g";
  10.    char *string2 = "FoxPro 2.0 ╡{ªí│]¡p---╢i╢Ñ╜g";
  11.    char *string3 = "FoxPro 2.0 ╡{ªí│]¡p---º▐Ñ⌐╗P╣Ω░╚";
  12.  
  13.    printf("ªrªΩ '%s' ñº¬°½╫¼░: %d\n", string1, strlen(string1));
  14.    printf("ªrªΩ '%s' ñº¬°½╫¼░: %d\n", string2, strlen(string2));
  15.    printf("ªrªΩ '%s' ñº¬°½╫¼░: %d\n", string3, strlen(string3));
  16. }
  17.