Brief about C Headers and Linking
Headers define the prototypes of the functions , datatypes , Macros and Includes guards = ( To prevent multiple inclusions of the same header file).
// myheader.h
#ifndef MYHEADER_H // Include guard
#define MYHEADER_H
// Function prototypes
void...
headers-in-c.hashnode.dev2 min read