Which standard library function in C is used to concatenate two strings?

  • strcat
  • strcmp
  • strconcat
  • strcopy
The strcat function in C is used to concatenate (append) one string to the end of another. It takes two strings as arguments and modifies the first string to include the second one at the end.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *