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
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What does emoji p mean?
How does selection sort work in c?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
why we wont use '&' sing in aceesing the string using scanf
Explain what is the benefit of using an enum rather than a #define constant?
How can I get random integers in a certain range?
Differentiate between calloc and malloc.
What is meant by initialization and how we initialize a variable?
What is a newline escape sequence?
write a c program to find the sum of five entered numbers using an array named number
Explain how can I open a file so that other programs can update it at the same time?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
How would you use the functions fseek(), freed(), fwrite() and ftell()?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above