What is the difference between File pointer and Internal
Charecter Pointer?
Answer Posted / 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 |
Post New Answer View All Answers
What is structure in c definition?
Explain union.
What are predefined functions in c?
What functions are in conio h?
What are identifiers and keywords in c?
Explain what is the best way to comment out a section of code that contains comments?
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 the different types of constants?
How can I insert or delete a line (or record) in the middle of a file?
What is the basic structure of c?
What do you mean by c what are the main characteristics of c language?
What is wrong in this statement?
What is the data segment that is followed by c?
What is the use of ?: Operator?
How are strings stored in c?