Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Telix/SALT v3.15 & RS-232, Hayes - <b>strcat</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
  STRCAT

  .  Summary

  strcat(str <string1>, str <string2>);

  .  Description

  The strcat function concatenates (adds or appends) one string to the
  other. <string2> is added to the end of <string1>. If <string1> is
  not large enough only as many characters as will fit are added.

  .  Return Value

  None.

  .  Example

  str s[80] = "hello";
  strcat(s, "good-bye");
  if (s == "hellogoodbye")
   prints("This will always be printed");

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson