What is the difference between File pointer and Internal
Charecter Pointer?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the properties of union in c?

590


What are local variables c?

551


What are the types of data types and explain?

673


Discuss the function of conditional operator, size of operator and comma operator with examples.

680


What is malloc calloc and realloc in c?

670






Can include files be nested?

629


What are static variables in c?

629


What are header files why are they important?

581


What is void main () in c?

734


a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode

659


a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list

632


How do c compilers work?

611


What is variable initialization and why is it important?

621


i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical

1844


What will the code below print when it is executed?   int x = 3, y = 4;         if (x = 4)                 y = 5;         else                 y = 2;         printf ("x=%d, y=%d ",x,y);

1358