+ 1
How to make own c++ header file, and what it can be included
C++ header file
4 odpowiedzi
+ 1
Header files contain definitions of Functions and Variables, which is imported or used into any C++program.
+ 1
create new file with extension of .h
e.g: example.h
add this file to the. cpp file.
#include "example.h"
that's all.
+ 1
In header file, what we can do more
0
Any example ?