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 |
what is the difference between unix os and linux os
What is void main () in c?
What is file in c language?
What's a good way to check for "close enough" floating-point equality?
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
what is ram?
#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); }
how to make a scientific calculater ?
Do string constants represent numerical values?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
How is = symbol different from == symbol in c programming?