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 unsigened char and what is the difference from char
How do you search data in a data file using random access method?
write a program to create a sparse matrix using dynamic memory allocation.
Why is it that not all header files are declared in every C program?
Explain 'bit masking'?
Write a code to generate a series where the next element is the sum of last k terms.
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā%dā ,a[i]); }
What are the string functions? List some string functions available in c.
What is the purpose of type declarations?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What are the types of assignment statements?
difference between c and c++