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 |
Can you please explain the difference between strcpy() and memcpy() function?
What does typedef struct mean?
How can you return multiple values from a function?
what is uses of .net
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }
2 Answers Vector, Vector India,
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
Explain how can I read and write comma-delimited text?
write a progam to display the factors of a given number and disply how many prime numbers are there?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
what is used instead of pointers in java than c?