Computer Science, asked by rahulkj7736, 23 days ago

To append one string to another string------------- function is used​

Answers

Answered by lakshmilakku
0

Answer:

Concatenation is the process of appending one string to the end of another string.

Explanation:

The act of joining one string to the end of another string is known as concatenation. Strings can be joined together by using the + operator. Concatenation for string literals and string constants happens at compile time; there is no concatenation at run time. Concatenation for string variables only happens during execution.

The strcat() function in the C language is used to combine two strings. It joins the source string to the end of the target string (the destination). Concatenating the two strings involves adding the source string's reference to the end of the destination string.

Consequently, to join two strings together, the strcat() function is used.

To learn more about  concatenate, visit

https://brainly.in/question/279589

To learn more about strings, visit

https://brainly.in/question/2521714

#SPJ3

Similar questions