Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create c++.cpp #359

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions languages/c++.cpp
Original file line number Diff line number Diff line change
@@ -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.