What is the difference between File pointer and Internal
Charecter Pointer?
Answer Posted / 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 View All Answers
What is pointer and structure in c?
What is the use of sizeof?
What are dangling pointers in c?
What is use of bit field?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
How to write c functions that modify head pointer of a linked list?
What is use of null pointer in c?
What is data type long in c?
I have seen function declarations that look like this
I need previous papers of CSC.......plz help out by posting them.......
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What are static variables in c?
What does a function declared as pascal do differently?
Explain the ternary tree?
Where define directive used?