Strcat
strcat()
strcat(destStr, sourceStr)
Copies sourceStr (up to and including null character) to end of destStr (starting at destStr's null character).
strcat(orgName, userText); // orgName is "United NationsUNICEF"
strcat(destStr, sourceStr)
Copies sourceStr (up to and including null character) to end of destStr (starting at destStr's null character).
strcat(orgName, userText); // orgName is "United NationsUNICEF"