printf()

created by r00k123
(thing) by r00k123 (3.3 mon) (print)   (I like it!) Thu Jul 12 2001 at 18:07:33
printf()

#include <stdio.h>

int printf( char* string, ... );

This function writes formatted output to stdout. The parameter string must point to characters to be copied to the output, as well as format specifications for any arguments that follow. printf() returns the number of characters written. In case of error, a negative number is returned.

See also: fprintf().


Back to Essential C Functions.

Y'know, if you log in, you can write something here, or contact authors directly on the site. Create a New User if you don't already have an account.