What is the purpose of ftell?
Answer / Neeraj Singh
In C, 'ftell' is a function used to get the current position in a file. It returns the number of characters that have been read since the file was opened or the last time 'ftell' was called on that particular stream.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is difference between far and near pointers?
Software Interview Questions
How is a null pointer different from a dangling pointer?
disadvantages of realloc ?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
How can I sort a linked list?
What are the uses of null pointers?
what are enumerations in C
Difference between for loop and while loop?
Program to find larger of the two numbers without using if-else,while,for,switch
what is the definition of storage classes?