About 125,000 results
Open links in new tab
  1. 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 …

  2. printf - C++ Users

    Writes the C string pointed by format to the standard output (stdout). If format includes format specifiers (subsequences beginning …

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

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

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

  6. Java Output printf () Method - W3Schools

    The printf() method outputs a formatted string. Data from the additional arguments is formatted and written into placeholders in the …

  7. A `printf` format reference page (cheat sheet) (C, Java, Scala, etc.)

    Jan 31, 2026 · Summary: This page is a printf formatting cheat sheet or reference page. I originally created this printf cheat sheet for …

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

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

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

  10. C++ printf() Function - GeeksforGeeks

    Jul 23, 2025 · printf () function is originally declared under the <cstdio>header file. It prints the formatted string to the standard output …