We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The function does not correctly format the width option.
Example:
printf("%5d", -1);
Output:
- 1
Here the example how it must be formatted:
-1
This bug works when the function prepends zeros.
The text was updated successfully, but these errors were encountered:
There are a few bugs in printf:
printf("%d", cellmin); printf("%x", -1);
I can't remember the rest. I did write a fixed version, but there is no good way that I could think of to fix it remotely efficiently.
Sorry, something went wrong.
No branches or pull requests
The function does not correctly format the width option.
Example:
Output:
Here the example how it must be formatted:
This bug works when the function prepends zeros.
The text was updated successfully, but these errors were encountered: