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 |
What is the difference between memcpy and memmove?
What is the difference between exit() and _exit() function?
What is bss in c?
write a prgram of swapping with 2 valiables
what is the difference between i++ and ++i?
Explain how can you restore a redirected standard stream?
Give a fast way to multiply a number by 7
15 Answers Accenture, Aricent, Microsoft,
What is the hardest programming language?
What is file in c language?
What is data structure in c programming?
Are the variables argc and argv are always local to main?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?