home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libc / compat / string / stpcpy.c < prev   
Encoding:
C/C++ Source or Header  |  1995-04-19  |  239 b   |  14 lines

  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int
  5. main(void)
  6. {
  7.   char d[100];
  8.   char *c = stpcpy(d, "hello");
  9.   printf("d=%s %p c=%s %p\n", d, d, c, c);
  10.   strcpy(c, "there");
  11.   printf("d=%s %p c=%s %p\n", d, d, c, c);
  12.   return 0;
  13. }
  14.