MATLAB: Shifting column cell array of string into row

converion of cell array

I have a cell array of string c = { 'a' ; 'b' ; 'c' ; 'd' ; ………. }
so i have c = 50*1
now i need to shift the cell array into c = 1*50
how can i do it using cell function or some other command??
is it possible??
Thanks a lot

Best Answer

c = { 'a' ; 'b' ; 'c' ; 'd' ; .......... };
c=c';