MATLAB - String Handling
What will be the output of this MATLAB code?
strA = '123';
strB = '456';
combined = strcat(strA, '-', strB);
disp(combined);
strA = '123';
strB = '456';
combined = strcat(strA, '-', strB);
disp(combined);
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions