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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat180.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <string.h>
  5. #include <stdio.h>
  6.  
  7. void main()
  8. {
  9.      char *s1 = "abcx";
  10.      char *s2 = "xyazcde";
  11.      char *s3 = "xyzbcdea";
  12.      printf("▒qªrªΩ \"%s\" ñº╢}└Y║Γ░_│s─≥ª│ %d ¡╙ªrñ╕ªsªb⌐≤ªrªΩ \"%s\" ññ\n",
  13.              s1, strspn(s1,s2), s2);
  14.      printf("▒qªrªΩ \"%s\" ñº╢}└Y║Γ░_│s─≥ª│ %d ¡╙ªrñ╕ªsªb⌐≤ªrªΩ \"%s\" ññ\n",
  15.              s1, strspn(s1,s3), s3);
  16. }
  17.  
  18.