About 88,700 results
Open links in new tab
  1. printf, fprintf, sprintf, snprintf, printf_s, fprintf_s, sprintf_s ...

    As with all bounds-checked functions, printf_s, fprintf_s, sprintf_s, and snprintf_s are only guaranteed to be available if …

  2. printf - C++ Users

    function <cstdio> printf ... Print formatted data to stdout Writes the C string pointed by format to the standard output (stdout). If format …

  3. printf - Wikipedia

    The name, printf, is short for print formatted where print refers to output to a printer although the function is not limited to printer …

  4. printf in C - GeeksforGeeks

    Oct 18, 2025 · In C language, printf () function is used to print formatted output to the standard output stdout (which is generally the …

  5. Format Specification Syntax: `printf` and `wprintf` Functions

    Oct 3, 2025 · Describes the format specifier syntax for the Microsoft C runtime `printf` and `wprintf` functions

  6. C stdio printf () Function - W3Schools

    The printf () function is defined in the <stdio.h> header file. Note: More accurately, it writes to the location specified by stdout which is …

  7. printf (3) - Linux manual page - man7.org

    If you discover any rendering problems in this HTML version of the page, or you believe there is a better or more up- to-date source …

  8. printf, _printf_l, wprintf, _wprintf_l | Microsoft Learn

    Oct 26, 2022 · Starting in Windows 10 version 2004 (build 19041), the printf family of functions prints exactly representable floating …

  9. std::printf, std::fprintf, std::sprintf, std::snprintf - cppreference.com

    Strings: [ Hello] [Hello ] [ Hello] [Hell ] [Hell ] Characters: A % Integers: Decimal: 1 2 000003 0 +4 -4 Hexadecimal: 5 a A 0x6 Octal: …

  10. What is the meaning of "%-*.*s" in a printf format string?

    May 21, 2014 · printf ("%8s", "abc") will print abc, including 5 leading spaces: 8 is the "field width". Think of a table of data with …