About 81,200 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 formatted and …

  2. 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 __STDC_LIB_EXT1__ is defined by the implementation and if the user defines …

  3. 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 console screen).

  4. C 库函数 – printf () | 菜鸟教程

    除了格式化说明符之外,printf () 函数还支持一些标志和选项,用于控制输出的精度、宽度、填充字符和对齐方式等。 例如: %-10s:左对齐并占用宽度为 10 的字符串; %5.2f:右对齐并占用宽度为 5, …

  5. 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 point numbers according to the IEEE 754 rules for rounding.

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

    std:: printf, std:: fprintf, std:: sprintf, std:: snprintf C++ Input/output library C-style I/O

  7. printf () function - C Library

    The C library printf () function is a fundamental tool for outputting formatted text to the standard output stream. It allows for versatile printing of variables, strings, and other data types.

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

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

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

    the functions printf (), fprintf (), dprintf (), respectively, except that they are called with a va_list instead of a variable number of arguments. These functions do not call the va_end macro. Because they invoke …

  10. 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 usually the console but it may be configured to point to a file or other …