Add missing # in include

This commit is contained in:
Morten Nobel-Jørgensen
2016-08-30 16:36:47 +02:00
committed by GitHub
parent 424939420f
commit 7e38a9247d

View File

@@ -15,7 +15,7 @@ The document is hosted on https://github.com/mortennobel/cpp-cheatsheet. Any com
// Comment to end of line
/* Multi-line comment */
#include <stdio.h> // Insert standard header file
include "myfile.h" // Insert file in current directory
#include "myfile.h" // Insert file in current directory
#define X some text // Replace X with some text
#define F(a,b) a+b // Replace F(1,2) with 1+2
#define X \