This is a file I/O function, also hardware dependent. It is not implemented in this Compiler.
#include <stdio.h>
int printf(const char *format, ...);
printf() is the same as sprintf(), but the output goes to stdout instead of a string.
For a detailed format description see sprintf().
The number of characters written. Returns EOF if some error occurred.