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 |
Explain the binary height balanced tree?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
How to add two numbers without using semicolon n c????
2. What does static variable mean?
What is c system32 taskhostw exe?
how to implement stack work as a queue?
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
Are there any problems with performing mathematical operations on different variable types?
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
Explain how are portions of a program disabled in demo versions?
What is structure in c language?
Differentiate between ordinary variable and pointer in c.