Function similar to setw without calling it from iomanip library?
Function similar to setw without calling it from iomanip library?
I'm trying to avoid calling function from a certain library and my program requires the use of setw. I was wondering if I can write the function by myself, if so can someone reply with source code for setw
setw
width
width
The first place to look for would be in your compiler's implementation.
– R Sahu
Sep 3 at 0:11
Why do you want to avoid this specific function? You have to use the library anyway, to get the stream objects.
– Neil Butterworth
Sep 3 at 0:12
@RSahu Compiler implementations can often obscure what the standard requirements are
– M.M
Sep 3 at 2:10
As @immibis stated you can just call width directly on the stream. But as Neil stated there would seem to be little point in avoiding setw while still using the rest of the streams library. Could you post a small code example of what you are doing now and what you would like to change?
– Steven W. Klassen
Sep 3 at 2:25
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Look up what
setw
does. It says it just callswidth
on the stream. So you can just callwidth
on the stream.– immibis
Sep 3 at 0:11