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

    The format string consists of ordinary byte characters (except %), which are copied unchanged into the output stream, and conversion specifications. Each conversion specification has the following format: …

  2. 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 …

  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. printf - Wikipedia

    printf is a C standard library function and is also a Linux terminal (shell) command that formats text and writes it to standard output. The function accepts a format C-string argument and a variable number …

  5. 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 …

  6. C stdio printf () Function - W3Schools

    Definition and Usage The printf() function writes a formatted string to the console. The printf() function is defined in the <stdio.h> header file. Note: More accurately, it writes to the location specified by stdout …

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

    If a call to sprintf or snprintf causes copying to take place between objects that overlap, the behavior is undefined (e.g. sprintf(buf, "%s text", buf);).

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

    Oct 26, 2022 · The printf function formats and prints a series of characters and values to the standard output stream, stdout. If arguments follow the format string, the format string must contain …

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

    Oct 3, 2025 · The various printf and wprintf functions take a format string and optional arguments and produce a formatted sequence of characters for output. The format string contains zero or more …

  10. 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.