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


cprintf

Syntax

#include <conio.h>

int cprintf(const char *_format, ...);

Description

Like printf (see section printf), but prints through the console, taking into consideration window borders and text attributes. There is currently a 2048-byte limit on the size of each individual cprintf call.

Return Value

The number of characters written.

Portability

not ANSI, not POSIX


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