Hi
Say I want to write a header file as an exercise. It will contain a bunch of functions and some constants.
Q1. I noticed that the standard header files only contain the function prototypes.
a> Where are the actual functions?
b> How do I write a header file such that the actual functions are separately stored?
c> How are these two files connected?
d> What is the advantage of this?
Q2. How do I include this header file in my code? Just the normal #include<>?
Thanks.