Compare commits

...

2 Commits

Author SHA1 Message Date
Simon Kamau
2be689a5ea Merge 424f6c2b9e into 88e5be6e4b 2024-08-29 18:33:43 +05:30
Simon Kamau
424f6c2b9e Create c++.cpp 2024-01-05 16:01:14 +03:00

5
languages/c++.cpp Normal file
View File

@@ -0,0 +1,5 @@
Prepossesor directives:
- #include <iostream> ## #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.