What is the output of the following code snippet? Note: …
What is the output of the following code snippet? Note: in the code snippet indicates one space. If you answer has a space, indicate the space clearly with . for ii=1:1:4 for jj=ii:-2:1 fprintf(‘%d ‘, ii + jj); end fprintf(‘%d’, ii); end