Which function is used to read the data from the disk
Answers
Answered by
0
Explanation:
Among the C I/O functions, there is a pair of functions, fgetc() and fputc(), that can be used to read from or write to a disk file one character at a time. #include <stdio. h> int fgetc(FILE *stream); Here stream is the file pointer that is associated with a stream.
Similar questions