home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / list17_6.c < prev    next >
C/C++ Source or Header  |  1993-10-16  |  309b  |  20 lines

  1.  /* The strncat() function. */
  2.  
  3.  #include <stdio.h>
  4.  #include <string.h>
  5.  
  6.  char str2[] = "abcdefghijklmnopqrstuvwxyz";
  7.  
  8.  main()
  9.  {
  10.      char str1[27];
  11.      int n;
  12.  
  13.      for (n=1; n < 27; n++)
  14.      {
  15.          strcpy(str1, "");
  16.          strncat(str1, str2, n);
  17.          puts(str1);
  18.      }
  19.  }
  20.