sprintf - Emulator of C language sprintf function
The sprintf function converts, formats, and stores its value parameters, under control of the format parameter.
The format parameter is a character string that contains two types of objects:
If there are not enough items for format in the value parameter list, sprintf generate an error. If any values remain after the entire format has been processed, they are ignored.
Note: sprintf is obsolete, use msprintf instead.
fahr=120 sprintf('%3d Fahrenheit = %6.1f Celsius',fahr,(5/9)*(fahr-32))
string, print, write, format, disp, file, printf, fprintf, msprintf,