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?
|
I have output like this:
but I want the output like this:
How can I do this in the C language? |
||||
Should do it for you, where val is each value. For more info see here Edit: Thanks Barry. |
|||||
|
man printf. If the latter, check documentation for <iomanip>. – pilcrow Aug 22 '09 at 5:08