C++ Programming/Code/Standard C Library/Functions/sscanf

From Wikibooks, open books for an open world
Jump to navigation Jump to search

sscanf[edit | edit source]

Syntax
#include <cstdio>
int sscanf( const char *buffer, const char *format, ... );

The function sscanf() is just like scanf(), except that the input is read from buffer.

Related topics
fscanf - scanf