C Programming MCQ Question and Answer
C Programming MCQ Question and Answer
22. The function ftell(fptr)returns
- the beginning position of the file represented by fptr
- the end position of the file represented by fptr
- the current position of the file represented by fptr
- the middle jposition of the file epresented by fptr
23. The value returned by successful action of ftell(fptr) is
- -1
- 0
- long int value representing the current file position
- MAX_INT
25. The function call f seek (fp, 0, 0); is same as
- fp = fopen()
- rewind (fp)
- fclose(fp);
- ftell(fp);