Page 1 of 1

Variable c is a cell array. Which of the following code can display the value of each cell element? A for i=1:length(c)

Posted: Fri May 20, 2022 11:52 am
by answerhappygod
Variable C Is A Cell Array Which Of The Following Code Can Display The Value Of Each Cell Element A For I 1 Length C 1
Variable C Is A Cell Array Which Of The Following Code Can Display The Value Of Each Cell Element A For I 1 Length C 1 (23.52 KiB) Viewed 92 times
Variable c is a cell array. Which of the following code can display the value of each cell element? A for i=1:length(c) disp(c(0)); end B. for x=c disp(x) end C for i=1:length(c) disp(c[0) end D.for "c disp({x}) end