We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This is similar to bug #109 , but with long long arguments (and an ll specifier).
ll
If we call printf_("%#.0llo", 0), we get an empty string ("") instead of getting "0" like we should with the alternative format for octal.
printf_("%#.0llo", 0)
""
"0"