Write a program to concatenate two string literals, putting the result in a dynamically allocated array of char.
char *name = newchar[11]("Header ""Test");
array 'new' cannot have initialization arguments
Same problem even if I were to take the "Test" away, I still get the same error, how would I assign or initialize a "dynamic array" from a string literal?