#include <stdio.h> int fputs(const char *string, FILE *file);
This function all the characters of string (except the trailing
NULL
) to the given file.
A nonnegative number on success, EOF
on error.
ANSI, POSIX
fputs("Hello\n", stdout);
Go to the first, previous, next, last section, table of contents.