my objective is to strcat(src1, src2) and save it to the variable result.



My attempt:


result = strcat(src1, src2);


But some people are saying my theory is wrong. Can someone show me how to save my result from strcat(src1, src2) to the variable result please ?