⏮️Pre-Processors
Those #Tag inside our program
#include <iostream> // For standard library headers #include "myheader.h" // For your own headers#define PI 3.14159 #define SQUARE(x) ((x) * (x))#ifdef DEBUG // Debug code #endif#ifndef MYHEADER_H #define MYHEADER_H // Header content #endif#pragma once
Last updated