Last active
December 29, 2015 18:49
-
-
Save bmnn/7713019 to your computer and use it in GitHub Desktop.
align; negative; floating point; numbers; decimal; printf;
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//r// (url='http://www.cplusplus.com/reference/cstdio/printf/') | |
// \ldots A format specifier follows this prototype: \ldots | |
// \ldots %[flags][width][.precision][length]specifier \ldots | |
// \ldots If no sign is going to be written, a blank space is inserted before the value \ldots | |
// \ldots Minimum number of characters to be printed. \ldots The value is not [respected] \ldots if the result is larger [and would be truncated]. \ldots | |
int printf ( const char * format, ... ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment