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


fprintf

Syntax

#include <stdio.h>

int fprintf(FILE *file, const char *format, ...);

Description

Prints formatted output to the named file. See section printf.

Return Value

The number of characters written.

Portability

ANSI, POSIX


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