About 85,700 results
Open links in new tab
  1. printf - C++ Users

    Writes the C string pointed by format to the standard output (stdout). If format includes format specifiers (subsequences beginning with %), the additional arguments following format are …

  2. fprintf - C++ Users

    For more examples on formatting see printf. Compatibility Particular library implementations may support additional specifiers and sub-specifiers.

  3. scanf - C++ Users

    See also fscanf Read formatted data from stream (function) printf Print formatted data to stdout (function) gets Get string from stdin (function) fopen Open file (function)

  4. Meaning of expressions like"%d" in c++ - C++ Forum - C++ Users

    May 25, 2013 · a conversion specifier character that specifies the type of conversion to be applied. d,i The int argument is converted to signed decimal in the style [−]dddd

  5. %d in printf - C++ Forum - C++ Users

    Jan 27, 2015 · %d in printf takes an integer from the values list and prints it. %PRIdPTR is a macro added in C99, that generally expands to effectively %lld, which can be used as a way of …

  6. sprintf - C++ Users

    Composes a string with the same text that would be printed if format was used on printf, but instead of being printed, the content is stored as a C string in the buffer pointed by str. The …

  7. snprintf - C++ Users

    The half of 60 is 30, and the half of that is 15. For more examples on formatting see printf. See also printf Print formatted data to stdout (function) sprintf Write formatted data to string …

  8. printf with leading zeros - C++ Forum

    Jun 12, 2012 · You have two possibilities. The first is that you can generate the format string yourself. The second is that you can use '*' and specify required number of digits as a …

  9. swprintf - C++ Users

    C wide string that contains a format string that follows the same specifications as format in printf (see printf for details). Notice that all format specifiers have the same meaning as in printf; …

  10. vprintf - C++ Users

    Writes the C string pointed by format to the standard output (stdout), replacing any format specifier in the same way as printf does, but using the elements in the variable argument list …