Header: stdio.h
Syntax:
extern int fputs
(
const char *s,
FILE *stream
);
Purpose: This function writes the string s to stream, at the position indicated by the associated file position indicator, and advances the indicator appropriately. The terminating NULL is not written.
|
|
|