Lets say I have two string sizes sizeA and SizeB, can I use them both to create an array like the following:
char str[sizeA+sizeB];
I want the array to be one dimensional and with size of both sizeA and sizeB combined. How would I do that correctly?
Thank you!
sizeAandsizeB.