From 424f6c2b9e3ad192bf80554bbf46d91d54bbb992 Mon Sep 17 00:00:00 2001 From: Simon Kamau Date: Fri, 5 Jan 2024 16:01:14 +0300 Subject: [PATCH] Create c++.cpp --- languages/c++.cpp | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 languages/c++.cpp diff --git a/languages/c++.cpp b/languages/c++.cpp new file mode 100644 index 0000000..9d4d3c3 --- /dev/null +++ b/languages/c++.cpp @@ -0,0 +1,5 @@ +Prepossesor directives: + +- #include ## #include is used to include content of another file in your c++ code +- #define PI 3.14159 ## #define - Used to define macros.Macros are pieces of code that are replaced by a specific value +- #pragma once This directive provides implementation-specific instructions to the compiler. It is often used for compiler-specific features or optimizations.