I am having trouble writing a program that uses two helper functions that concatenates the strings a and b to the buffer result. It can hold result_maxlength + 1 bptes available and provide a '\0' terminator. This is what I have so far..
1. I know my strcat function is off
2. I don't know how to use those two functions in my concatenates function
3. Why is giving me errors for these two lines say BFSZ1 and BFSZ2 must have a constant value.
char c[BFSZ1 + 1];
char d[BFSZ2 + 1];