mirror of
https://github.com/DevEhChad/cpp-cheatsheet.git
synced 2025-11-08 14:01:34 +00:00
Add missing # in include
This commit is contained in:
committed by
GitHub
parent
424939420f
commit
7e38a9247d
@@ -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 \
|
||||
|
||||
Reference in New Issue
Block a user