Mega Code Archive

 
Categories / C / Code Snippets
 

Demonstrates how to put strings together using strcat

#include <string.h> #include <stdio.h> int main() { char first[120]; char last[120]; char full_name[200]; strcpy(first, "firstName"); strcpy(last, "secondName"); strcpy(full_name, first); strcat(full_name, " "); strcat(full_name, last); printf("The full name is %s\n", full_name); return (0); }