what are the header files used in c++ code example

Example 1: c++ include header

#include "headerfile.h"

Example 2: c++ header files

// You should use header files when you wan't to split your
// program across multiple files. Use it like this:

// vec2.hpp
class vec2 {
	public:
  		void printVec(); // Decleration
  		float x, y;
}
// vec2.cpp
#include "vec2.hpp"
void vec2::printVec() { // Implementation
	std::cout << x << y << std::endl;
}

Example 3: what is a header in c++

// my_program.cpp
#include "my_class.h"

using namespace N;

int main()
{
    my_class mc;
    mc.do_something();
    return 0;
}

Example 4: what is a header in c++

int x; // declaration
x = 42; // use x

Tags:

Cpp Example