how i solve this..? Please details..
find out the C Scientific notation of numbers - 1300, 123.45, 0.00426.
Collapse
X
-
Tags: None
-
What do expect the correct answer to look like for those three numbers?
I ask because there are different opinions how to represent a number like 14000; some prefer 1.4E4 others prefer 14E3. The latter is so-called engineering style, where the exponent is restricted to multiples of 3.
This is a question about controlling the format used to print out a number. I suggest you take a look at the printf manpage.
Comment