printf()

This is a file I/O function, also hardware dependent. It is not implemented in this Compiler.

Syntax
  #include <stdio.h>

  
  int printf(const char *format, ...);

  
Description

printf() is the same as sprintf(), but the output goes to stdout instead of a string.

For a detailed format description see sprintf().

Return

The number of characters written. Returns EOF if some error occurred.

See also

fprintf()

vfprintf(), vprintf(), and vsprintf()