May 2020
Intermediate to advanced
308 pages
9h 14m
English
In Visual Studio IDE, the steps to add custom header files are as shown in Figs. B.1 and B.2.
Enter File -> New

Fig. B.1: File -> New.
Select C/C++ Header File

Fig. B.2: Select C/C++ Header File.
Note the difference between brackets and quotes when including header files in the code files.
Header files that come with the system should be written inside of brackets, so that the compiler can perform the lookup under system paths.
#include <xxx.h>
User-defined files should be written ...
Read now
Unlock full access