What is the difference between File pointer and Internal
Charecter Pointer?
Answers were Sorted based on User's Feedback
Answer / gsrinivas
file pointer stores the address of the begining record
block of the file .where the internal character pointer
stores the address of the variable of type char.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / chhaya
first what is pointer?
Pointer is nothing bt the concept of showing address of
memmory,element etc.
here, file pointer is nothing bt pointer handle the address
of file having FILE data type.
file pointer shows the address of file where file is open
by Fopen Function.
Internal Character Pointer:
pointer points to the perticular character.
it is charecter type
| Is This Answer Correct ? | 1 Yes | 0 No |
List some basic data types in c?
Do array subscripts always start with zero?
How pointer is benefit for design a data structure algorithm?
What is an volatile variable?
What is the use of ?: Operator?
What is array of pointers to string?
What is call by reference in functions?
What is the relationship between pointers and data structure?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
how to swap 2 numbers in a single statement?
What are dangling pointers? How are dangling pointers different from memory leaks?
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.