InterviewSolution
Saved Bookmarks
| 1. |
To connect the C program and the operating system, what structure is used? |
|
Answer» The FILE structure is used to connect the operating system and an APPLICATION. The header file “stdio.h” (standard input/output header file) defines the file. It contains information on the currently open file, its current size, and its MEMORY LOCATION. It has a CHARACTER pointer that indicates which character is currently being opened. When you open a file, you're telling the software and the operating system which file you want to open. |
|