About 28,900 results
Open links in new tab
  1. fprintf - Write data to text file - MATLAB - MathWorks

    This MATLAB function applies the formatSpec to all elements of arrays A1,...An in column order, and writes the data to a text file.

  2. printf, fprintf, sprintf, snprintf, printf_s, fprintf_s, sprintf_s ...

    3) Writes the results to a character string buffer. The behavior is undefined if the string to be written (plus the terminating null character) exceeds the size of the array pointed to by buffer.

  3. fprintf () function - C Library

    The C library fprintf() function is used to write formatted data to a stream. It is part of the standard I/O library <stdio.h> and allows you to write data to a file stream as opposed to printf() which writes to …

  4. fprintf, _fprintf_l, fwprintf, _fwprintf_l, _ftprintf, _ftprintf_l ...

    Jul 2, 2025 · For fprintf, the format argument has the same syntax that it has in printf. fwprintf is a wide-character version of fprintf; in fwprintf, format is a wide-character string.

  5. fprintf - C++ Users

    Writes the C string pointed by format to the stream. If format includes format specifiers (subsequences beginning with %), the additional arguments following format are formatted and inserted in the …

  6. fprintf () in C - GeeksforGeeks

    Oct 28, 2020 · Your All-in-One Learning Portal: GeeksforGeeks is a comprehensive educational platform that empowers learners across domains-spanning computer science and programming, school …

  7. What is the difference between printf, sprintf and fprintf?

    Jul 23, 2025 · The printf () function is used as a standard method for output operations and C also provides some different versions of this function such as sprintf () and fprintf (). These functions are …

  8. 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);).

  9. fprintf (3p) - Linux manual page - man7.org

    FPRINTF(3P) POSIX Programmer's Manual FPRINTF(3P) PROLOG top This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the …

  10. C stdio fprintf () Function - W3Schools

    Definition and Usage The fprintf() function writes a formatted string into a file. The fprintf() function is defined in the <stdio.h> header file. Format specifiers The format string can contain format specifiers …