C++
Programming and Technical
Logical Reasoning
General Mental Ability
What is a file pointer?
Read Solution (Total 2)
-
- When a pointer is pointing to the address of a file than it is called as a file pointer.
example:
FILE *fp;
File pointers are used to open,read,write and close files.
- 10 years agoHelpfull: Yes(2) No(0)
- each file having two pointers called file pointers.They are input pointer and output pointer.The input pointer is used for reading the contents of a given file location.The output pointer is used for writing to a given location.
- 10 years agoHelpfull: Yes(0) No(0)
C++ Other Question