Go to the first, previous, next, last section, table of contents.


fputs

Syntax

#include <stdio.h>

int fputs(const char *string, FILE *file);

Description

This function all the characters of string (except the trailing NULL) to the given file.

Return Value

A nonnegative number on success, EOF on error.

Portability

ANSI, POSIX

Example

fputs("Hello\n", stdout);


Go to the first, previous, next, last section, table of contents.