What is the difference between File pointer and Internal
Charecter Pointer?
Answer Posted / 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 |
Post New Answer View All Answers
What is difference between function overloading and operator overloading?
How can I write a function analogous to scanf?
Find MAXIMUM of three distinct integers using a single C statement
How can I call a function with an argument list built up at run time?
Define Spanning-Tree Protocol (STP)
What is the function of volatile in c language?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
Is c is a procedural language?
Explain the difference between strcpy() and memcpy() function?
What are the __date__ and __time__ preprocessor commands?
What is spark map function?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What is the difference between int main and void main in c?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Is linux written in c?