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 |
List some of the dynamic data structures in C?
Explain how can you tell whether two strings are the same?
Is null a keyword in c?
suppose there are five integers write a program to find larger among them without using if- else
What are the data types present in c?
why do some people write if(0 == x) instead of if(x == 0)?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
what is difference between #include<stdio.h> and #include"stdio.h"
What is line in c preprocessor?
Does * p ++ increment p or what it points to?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }