A C header file is a file with extension .h that contains function declarations and macro definitons to be shared between several source files. Header files are listed using the preprocessing directive #include, and can have one of the following formats: #include or #include 'fileB'. What is the difference between these two formats?

🎲 Try a Random Question  |  Total Questions in Quiz: 49  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
C (Programming Language) Quiz — practice the complete quiz, review flashcards, or try a random question.

C (Programming Language) MCQs For LinkedIn Skill Assessments.


A C header file is a file with extension .h that contains function declarations and macro definitons to be shared between several source files. Header files are listed using the preprocessing directive #include, and can have one of the following formats: #include <fileA> or #include 'fileB'. What is the difference between these two formats?