Possible Duplicate:
What's the difference between a file descriptor and file pointer?
If I open file like this:
FILE *fp = fopen("mr32.txr","r");
then fp is file pointer or file descriptor? What is difference between them?
If I open file like this:
then |
||||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
fp is a FILE pointer File pointer:
File descriptor:
based on this link |
|||
|
|
|
It's a pointer to a |
|||||
|
|
|
|||
|
|