I need to print the result of a program with 20 significant figures, but I don't know how to print more than 15 figures (format long). Is there any way to achieve this?

link|improve this question

70% accept rate
feedback

1 Answer

up vote 3 down vote accepted

You can control the format of your output with printf, just like in C, by following this syntax with these format specifiers:

> printf('%.20f\n', pi)
3.14159265358979311600
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.