函数名: ftell 
 功  能: 返回当前文件指针 
 用  法: #include <stdio.h>
         long ftell(FILE *stream); 
 程序例: 
#include <stdio.h>
int main(void) 
 { 
    FILE *stream; 
   stream = fopen("MYFILE.TXT", "w+"); 
    fprintf(stream, "This is a test"); 
    printf("The file pointer is at byte \ 
           %ld\n", ftell(stream)); 
    fclose(stream); 
    return 0; 
 }