From 70e598bdbc012da5a58235da7a099113e7248f11 Mon Sep 17 00:00:00 2001 From: prahuljose Date: Fri, 7 Oct 2022 14:42:51 +0530 Subject: [PATCH 1/2] Update cpp.md --- cpp.md | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp.md b/cpp.md index 14e40b6..431ced2 100644 --- a/cpp.md +++ b/cpp.md @@ -524,3 +524,4 @@ sort(v.begin(), v.end(), greater()); // sorting in the vector in descending |#include | It is used include and facilitate graphical operations in program| |#include | It is used to include all the standard library files| |#include | Inlcude all the headers. A Usefull Hack for Competitive Programming| +|#include | Header defines various mathematical functions and one macro. All the functions available in this library take double as an argument and return double as the result.| From ed236c2cbeea79cc5dabf6087636a4703beccb85 Mon Sep 17 00:00:00 2001 From: prahuljose Date: Fri, 7 Oct 2022 14:56:39 +0530 Subject: [PATCH 2/2] updated the CPP header section with NON-Plagiarized content --- cpp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp.md b/cpp.md index 04ab207..21d5054 100644 --- a/cpp.md +++ b/cpp.md @@ -525,4 +525,4 @@ sort(v.begin(), v.end(), greater()); // sorting in the vector in descending |#include | It is used include and facilitate graphical operations in program| |#include | It is used to include all the standard library files| |#include | Inlcude all the headers. A Usefull Hack for Competitive Programming| -|#include | Header defines various mathematical functions and one macro. All the functions available in this library take double as an argument and return double as the result.| +|#include | 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.|