MATLAB - String Handling
The following MATLAB code is intended to concatenate
'Hi' and 'There' but causes an error. What is the error and how to fix it?str1 = 'Hi';
str2 = 'There';
result = str1 + str2;
disp(result);
