c++ in what order should you include headers code example
Example 1: c++ include header
#include "headerfile.h"
Example 2: what is a header in c++
int x; // declaration
x = 42; // use x
#include "headerfile.h"
int x; // declaration
x = 42; // use x