home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / glibc-1.09 / glibc-1 / glibc-1.09.1 / manual / examples / strncat.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-18  |  224 b   |  15 lines

  1. #include <string.h>
  2. #include <stdio.h>
  3.  
  4. #define SIZE 10
  5.  
  6. static char buffer[SIZE];
  7.  
  8. main ()
  9. {
  10.   strncpy (buffer, "hello", SIZE);
  11.   puts (buffer);
  12.   strncat (buffer, ", world", SIZE - strlen (buffer) - 1);
  13.   puts (buffer);
  14. }
  15.