Top

Discussion

The ______ function appends not more than n characters.

  • A.strcat()
  • B.strcon()
  • C.strncat()
  • D.memcat()

Answer: C

The strncat() function appends not more than n characters from the array(s2) to the end of the string(s1).char *strncat(char *s1, const char *s2,size_t n);

No comment is present. Be the first to comment.
Loading…

Post your comment