About 58,600 results
Open links in new tab
  1. sscanf () function - C Library

    The C library sscanf (const char *str, const char *format, ...) function reads formatted input from a string and stores the result in the provided variables.

  2. How to Read Data Using sscanf() in C? - GeeksforGeeks

    Jul 23, 2025 · In C, sscanf () function stands for "String Scan Formatted". This function is used for parsing the formatted strings, unlike scanf () that reads from the input stream, the sscanf () …

  3. scanf, fscanf, sscanf, scanf_s, fscanf_s, sscanf_s - Reference

    Jul 4, 2022 · As with all bounds-checked functions, scanf_s, fscanf_s, and sscanf_s are only guaranteed to be available if __STDC_LIB_EXT1__ is defined by the implementation and if …

  4. sscanf (3) - Linux manual page - man7.org

    sscanf () These functions read their input from the string pointed to by str. The vsscanf () function is analogous to vsprintf(3). The format string consists of a sequence of directives which …

  5. sscanf, _sscanf_l, swscanf, _swscanf_l | Microsoft Learn

    Oct 26, 2022 · The sscanf function reads data from buffer into the location given by each argument. Every argument must be a pointer to a variable with a type that corresponds to a …

  6. sscanf - C++ Users

    Reads data from s and stores them according to parameter format into the locations given by the additional arguments, as if scanf was used, but reading from s instead of the standard input …

  7. C stdio sscanf () Function - W3Schools

    The sscanf() function reads data from a char array and writes it into memory locations specified by the arguments. The sscanf() function is defined in the <stdio.h> header file.

  8. C sscanf Tutorial: Master String Parsing with Practical Examples

    Apr 6, 2025 · Learn string parsing in C with this comprehensive sscanf tutorial. Explore format specifiers, practical examples, and best practices for safe string operations.

  9. sscanf (3): input format conversion - Linux man page

    The scanf () function reads input from the standard input stream stdin, fscanf () reads input from the stream pointer stream, and sscanf () reads its input from the character string pointed to by str.

  10. c - Properly using sscanf - Stack Overflow

    The first part is answering the general question of "properly using sscanf", by describing the benefits of using sscanf, and when it is preferable to use sscanf.