I have
char aa[] = { \"Hello, !\" };
char bb[] = { \"World\" };
How to insert bb into aa the most efficiently with cstring
char *newStr = malloc(strlen(aa) + strlen(bb));
sprintf(newStr, "%s%s", aa, bb);