English Dictionary
◊ DID YOU MEAN PRINT?
print
adj : written in print characters or produced by means of e.g. a
printing press [syn: {printed}]
n 1: the result of the printing process [syn: {black and white}]
2: a picture or design printed from an engraving [syn: {print
making}]
3: a fabric with a dyed pattern pressed onto it (usually by
engraved rollers)
4: a printed picture produced from a photographic negative
[syn: {photographic print}]
v 1: put into print [syn: {publish}]
2: write as if with print; not cursive
3: make into a print
4: reproduce by printing [syn: {impress}]
English Computing Dictionary
◊ PRINTF
printf
The standard function in the {C} programming
language library for printing formatted output.
The first argument is a format string which may contain
ordinary characters which are just printed and "conversion
specifications" - sequences beginning with '%' such as %6d
which describe how the other arguments should be printed, in
this case as a six-character decimal integer padded on the
right with spaces.
Possible conversion specifications are d, i or u (decimal
integer), o ({octal}), x, X or p ({hexadecimal}), f
({floating-point}), e or E ({mantissa} and {exponent},
e.g. 1.23E-22), g or G (f or e format as appropriate to the
value printed), c (a single character), s (a string), %
(i.e. %% - print a % character). d, i, f, e, g are signed,
the rest are unsigned.
The variant {fprintf} prints to a given output stream and
sprintf stores what would be printed in a string variable.
{Unix manual page}: printf(3).
(1996-12-08)