InterviewSolution
Saved Bookmarks
| 1. |
Which structure is used to link the program and the operating system? |
|
Answer» The file structure is used to link the operating system and a PROGRAM. The header file "stdio.h" (STANDARD input/output header file) defines the file. It contains information about the file being used LIKE its CURRENT size and its memory location. It contains a CHARACTER pointer that points to the character which is currently being opened. When you open a file, it establishes a link between the program and the operating system about which file is to be accessed. |
|