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

  1.  /* The strcat() function. */
  2.  
  3.  #include <stdio.h>
  4.  #include <string.h>
  5.  
  6.  char str1[27] = "a";
  7.  char str2[2];
  8.  
  9.  main()
  10.  {
  11.      int n;
  12.  
  13.      /* Put a null character at the end of str2[]. */
  14.  
  15.      str2[1] = '\0';
  16.  
  17.      for (n = 98; n < 123; n++)
  18.      {
  19.          str2[0] = n;
  20.          strcat(str1, str2);
  21.          puts(str1);
  22.      }
  23.  }
  24.