Multiple choice

Which C header file contains the prototype statements for the file operations?

  1. string.h

  2. stdio.h

  3. conio.h

  4. stdlib.h

  5. math.h

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Input and Output operations can also be performed in C using the C Standard Input and Output Library (cstdio, known as stdio.h in the C language). This library uses what are called streams to operate with physical devices such as keyboards, printers, terminals or with any other type of files supported by the system.