FILE pointer is struct data type which has been defined in standard library stdio.h. This data type points to a stream or a null value. It has been defined in stdio.h as
typedef struct{
short level;
unsigned flags;
char fd;
unsigned char hold;
short bsize;
unsigned char *buffer, *curp;
unsigned istemp;
short token;
} FILE;
4 comments:
yes, but what is the difference between file and ordinary pointer and suppose if i want to use file pointer like a memory pointer is that possible ?
Good job
What is the default file pointers of a program
What Is the purpose of file pointer
Post a Comment