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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat181.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <string.h>
  6.  
  7. void main()
  8. {
  9.    char *str    = "º┌╖R⌐pª│ªh▓`, ⌐p»α░≈╣∩º┌┤Xñ└";
  10.    char *substr = "ª│ªh▓`";
  11.    char *ptr;
  12.  
  13.    ptr = strstr(str, substr);
  14.    printf("ñlªrªΩ \"%s\" ñº╢}└Yª∞⌐≤ªrªΩ \"%s\" \nñññº▓─ %d ¡╙ª∞ñ╕ª∞╕m",
  15.            substr, str, ptr-str+1);
  16. }
  17.