fputs(), puts() - output di una stringa
#include int fputs(const char *s, FILE *stream); int puts(const char *s);
La funzione fputs() scrive la stringa s su stream.
La funzione puts() scrive la stringa s sullo stdout aggiungendo il carattere di new-line '\n'.
Le funzioni fputs() e puts() ritornano un numero non-negativo in caso di successo e EOF in caso di errore.
ANSI C, POSIX.1
fopen() fdopen() freopen() tmpfile() fclose() setbuf() setbuffer() setlinebuf() setvbuf() clearerr() feof() ferror() fileno() fseek() rewind() ftell() fgetpos() fsetpos() fflush() fgetc() getc() getchar() ungetc() fputc() putc() putchar() fgets() gets() scanf() fscanf() sscanf() vscanf() vsscanf() vfscanf() printf() fprintf() sprintf() snprintf() vprintf() vfprintf() vsprintf() vsnprintf() fread() fwrite()
Indice linguaggio C |
Indice librerie C |
Umberto Zappi Home Page |
Indice funzioni C |