December 2005
Beginner to intermediate
618 pages
20h 19m
English
fputs
Writes a string to a file
#include <stdio.h> intfputs( const char * restrictstring, FILE * restrictfp);
The fputs() function writes
a string to the file specified by the FILE pointer argument. The string is
written without the terminator character ('\0'). If successful, fputs() returns a value greater than or
equal to zero. A return value of EOF indicates that an error
occurred.
Read now
Unlock full access