kennen:lib:fscanf
Inhaltsverzeichnis
fscanf()
#include
<cstdio>
int fscanf (FILE *datei, const char *format, ...)
Formatierte Eingabe aus der datei
.
Parameter
datei | Zeiger auf einen offenen Datenstrom |
format | Formatzeichenkette wie scanf() |
Ergebnis
Rückgabewert: wie scanf().
Siehe auch
Beispiel
- fscanf.cpp
#include <cstdio> int main() { using namespace std; char name[30]; fprintf(stdout, "Wie heisst du?\n"); fscanf(stdin, "%30s", name); fprintf(stdout, "Hallo, %s!\n", name); }
kennen/lib/fscanf.txt · Zuletzt geändert: 2019-11-20 16:07 von 127.0.0.1