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

what is the difference between unix os and linux os

4 Answers  


What is void main () in c?

0 Answers  


What is file in c language?

0 Answers  


What's a good way to check for "close enough" floating-point equality?

0 Answers   Celstream,


What is the difference between null pointer and void pointer

10 Answers   CTS, Manforce, MAQ Software,






accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input

1 Answers  


what is ram?

3 Answers   TCS,


#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }

3 Answers  


how to make a scientific calculater ?

0 Answers  


Do string constants represent numerical values?

0 Answers  


main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }

6 Answers  


How is = symbol different from == symbol in c programming?

0 Answers  


Categories