Table of Contents Previous topic Next topic
C COMPILER LIBRARY FUNCTIONS->Detailed Descriptions->fgets()
Summary
#include <stdio.h>
int fgets(char* string, int n, FILE* stream); Read characters from stream
Parameter
| string | Pointer to char array pointer to receive characters |
| n | Number of characters to read |
| stream | Pointer to file structure |