How do I format my output in C++ streams to print fixed width left-aligned tables? Something like
printf("%-14.3f%-14.3f\n", 12345.12345, 12345.12345);
poducing
12345.123 12345.123
|
How do I format my output in C++ streams to print fixed width left-aligned tables? Something like
poducing
|
||||
|
|
|
Include the standard header |
|||||
|
|
||||
|
|
|
You may also consider more friendly functionality provided by one of these:
Writing from memory, but should be something along these lines:
Also, if you plan to stick with any of these formatting libraries, examine thoroughly their limitations in context of expressibility, portability (and other library dependency), efficiency, support of internationalisation, type-safety, etc. |
||||
|
You want to use stream manipulators: http://www.deitel.com/articles/cplusplus_tutorials/20060218/index.html |
|||
|
|
|
Thanks, |
|||||
|