Original Sources:


Used in this file:


~ Ex.:

name = 'Alice';   
age = 12;
fprintf('%s will be %d this year.\n',name,age);

Why fprint?

WAAAAAY better than disp, also work like sprintf but already displays the results (which is exactly what i expect a print statement to do).