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

updated cpp header section with NON-Plagiarized content #263

Open
wants to merge 3 commits 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cpp.md
Original file line number Diff line number Diff line change
Expand Up @@ -525,3 +525,4 @@ sort(v.begin(), v.end(), greater<int>()); // sorting in the vector in descending
|#include<graphics.h> | It is used include and facilitate graphical operations in program|
|#include<bits/stdc++.h> | It is used to include all the standard library files|
|#include <bits/stdc++.h> | Inlcude all the headers. A Usefull Hack for Competitive Programming|
|#include <math.h> | It is used to perform several mathematical functions without the intial boilerplate code, all functions in this library take all arguments as DOUBLE data type and returns them also as a DOUBLE data type.|