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

Answers were Sorted based on User's Feedback



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

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

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

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

Post New Answer

More C Interview Questions

List some of the dynamic data structures in C?

0 Answers  


In header files whether functions are declared or defined?

1 Answers   TCS,


write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.

0 Answers  


What do you mean by team??

5 Answers   Student,


Eight queens puzzle

0 Answers  






How to implement a packet in C

0 Answers   Aricent,


please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com

0 Answers  


can we write a c program with out using main

3 Answers  


Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .

2 Answers   Oracle,


Write a code to remove duplicates in a string.

0 Answers   Expedia,


What are the different types of errors?

0 Answers  


How is a macro different from a function?

0 Answers   Tech Mahindra,


Categories