vote up 1 vote down star

I have output like this:

1569.3669
15968.3699
41.3878
587.5401

but I want the output like this:

01569.3669
15968.3699
00041.3878
00587.5401

How can I do this in the C language?

flag
If you're asking about C, don't tag it C++. You will not get correct answers. – Chris Lutz Aug 22 at 5:07
Are you coding in C as your question states, or C++ as your tag suggests? If the former, man printf. If the latter, check documentation for <iomanip>. – pilcrow Aug 22 at 5:08
I assumed he meant C, as in the question, and simply tagged it C++ because of the auto-completing tags (C++ is probably more popular than C on this site), so I edited the tags to be C-related. If this was incorrect, we can always fix it. – Chris Lutz Aug 22 at 5:09

1 Answer

vote up 6 vote down
printf("%010.4f", val);

Should do it for you, where val is each value. For more info see here

Edit: Thanks Barry.

link|flag
3  
Using a leading zero is the correct idea, but the number to the left of the decimal point is the width of the entire number (integer plus decimal portion, including the decimal point itself). The correct format code is %010.4f – Barry Brown Aug 22 at 5:25

Your Answer

Get an OpenID
or

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