C Programming - Library Functions - Discussion

Discussion Forum : Library Functions - True / False Questions (Q.No. 3)
3.
ftell() returns the current position of the pointer in a file stream.
True
False
Answer: Option
Explanation:

The ftell() function shall obtain the current value of the file-position indicator for the stream pointed to by stream.

Example:


#include <stdio.h>

int main(void)
{
	FILE *stream;
	stream = fopen("MYFILE.TXT", "w+");
	fprintf(stream, "This is a test");
    printf("The file pointer is at byte %ld\n", ftell(stream));
    fclose(stream);
    return 0;
}
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.