/* Fig. 8.19: fig08_19.c Using strcat and strncat */ #include #include int main() { char s1[ 20 ] = "Happy "; /* initialize char array s1 */ char s2[] = "New Year "; /* initialize char array s2 */ char s3[ 40 ] = ""; /* initialize char array s3 to empty */ printf( "s1 = %s\ns2 = %s\n", s1, s2 ); /* concatenate s2 to s1 */ printf( "strcat( s1, s2 ) = %s\n", strcat( s1, s2 ) ); /* concatenate first 6 characters of s1 to s3. Place '\0' after last character */ printf( "strncat( s3, s1, 6 ) = %s\n", strncat( s3, s1, 6 ) ); /* concatenate s1 to s3 */ printf( "strcat( s3, s1 ) = %s\n", strcat( s3, s1 ) ); return 0; /* indicates successful termination */ } /* end main */ /************************************************************************** * (C) Copyright 1992-2004 by Deitel & Associates, Inc. and * * Pearson Education, Inc. All Rights Reserved. * * * * DISCLAIMER: The authors and publisher of this book have used their * * best efforts in preparing the book. These efforts include the * * development, research, and testing of the theories and programs * * to determine their effectiveness. The authors and publisher make * * no warranty of any kind, expressed or implied, with regard to these * * programs or to the documentation contained in these books. The authors * * and publisher shall not be liable in any event for incidental or * * consequential damages in connection with, or arising out of, the * * furnishing, performance, or use of these programs. * *************************************************************************/