Posts by patrick.paulin • 11 points
1 post
-
1
votes3
answers1148
viewsA: How to concatenate strings without using a function?
There are several ways to concatenate strings. Here are some examples that are more practical and less costly. char * str1 = "Teste1"; char * str1 = "Teste2"; char str3[50]; /* Exemplo 1 */…