Who writes header files

c, header-files

Solution

The header files that come with your compiler are written by the authors of your compiler and C library. Header files for third-party libraries are written by the authors of those libraries. Header files for your software are written by you.

Problem

We have been learning C and it might seem like a stupid question to ask. I want to know who exactly writes header files. I know that they have predefined functions in them and can be accessed as per need.

Original source