About 18,300 results
Open links in new tab
  1. scanf in C - GeeksforGeeks

    Oct 13, 2025 · It scans the input according to the specified format specifiers(like %d, %f, %s, etc.) and stores the values into the …

  2. C stdio scanf() Function - W3Schools

    The scanf()function is defined in the <stdio.h>header file. The formatparameter is a string that describes the format of the data that is …

  3. scanf, fscanf, sscanf, scanf_s, fscanf_s, sscanf_s - cppreference.com

    The conversion specifiers that do not consume leading whitespace, such as %c, can be made to do so by using a whitespace …

  4. scanf - Wikipedia

    Toggle the table of contents. scanf. 7 languages.

  5. scanf, _scanf_l, wscanf, _wscanf_l | Microsoft Learn

    Oct 26, 2022 · The scanf function reads data from the standard input stream stdin and writes the data into the location given by …

  6. scanf - C++ Users

    These arguments are expected to be pointers: to store the result of a scanf operation on a regular variable, its name should be …

  7. scanf() and fscanf() in C - GeeksforGeeks

    Jul 21, 2026 · The scanf () and fscanf () functions are standard input functions in C used to read formatted data. While scanf () reads …

  8. C Library - scanf() function

    Return Value The scanf function returns an integer value which indicates the number of input items successfully matched and …

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

    The scanf() family of functions scans formatted input like sscanf(3), but read from a FILE. It is very difficult to use these functions …

  10. std::scanf, std::fscanf, std::sscanf - cppreference.com

    Reads data from a variety of sources, interprets it according to format and stores the results into given locations. 1) Reads the data …