+ 2
string concatenation
how do i concatenate two string together without using the library function?
1 Resposta
0
you can create a new string with the length equals the sum of the length of the strings and for each one you copy then into the new string using a loop
if you dont want to use length too just loop until you find '\0'