#include <stdio.h> long ftell(FILE *file);
Returns the current file position for file
. This is suitable for
a future call to fseek
.
The file position, or -1 on error.
ANSI, POSIX
long p = ftell(stdout);
Go to the first, previous, next, last section, table of contents.