How to Merge Strings in C Language

https:‮ual.www//‬tturi.com
How to Merge Strings in C Language
#include <stdio.h>
#include <string.h>
int main() {
	char str[100];
	strcpy(str, "hello ");
	strcat(str, "lautturi ");
	strcat(str, "word!");
	printf("%s\n", str);
}
Created Time:2017-08-28 22:12:39  Author:lautturi