print first element of cell to screen using fprintf in matlab
main.m
% Tags: matlab, cell arrays, fprintf, indexing% creating a sample cell arraymyCell = {'apple', 'banana', 'cherry'};
% printing the first element of the cell to the screenfprintf('%s\n', myCell{1});