|
From: <HBB...@t-...> - 2007-06-25 21:18:56
|
Francky Leyn wrote:
> f1 = 1.2
> sf1(f) = sprintf("f1 = %2.2s%c", f)
> Errors appear. Why?
Because you didn't read the documentation: help sprintf.
> What is wrong?
You used format specifiers that sprintf() doesn't support for printing
floating-point numbers.
|