From a7bce76fd0dddf7e907e954e85ef2d774327af34 Mon Sep 17 00:00:00 2001 From: aryansingho7 <59662801+aryansingho7@users.noreply.github.com> Date: Thu, 1 Oct 2020 17:34:33 +0530 Subject: [PATCH 1/2] Update hello world --- CPP/hello world | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CPP/hello world b/CPP/hello world index c2bff56..c95fedb 100644 --- a/CPP/hello world +++ b/CPP/hello world @@ -1,7 +1,7 @@ -#include -using namespace std; -int main() -{ - cout<<"Hello World!"; - return 0; +(short) +#include + +int main() { + std::cout << "Hello World!"; + return 0; } From 74cba6aaff930b3f51ade98d3ddeb2ed17c39b3a Mon Sep 17 00:00:00 2001 From: aryansingho7 <59662801+aryansingho7@users.noreply.github.com> Date: Thu, 1 Oct 2020 17:37:30 +0530 Subject: [PATCH 2/2] Create CPP_ vectors --- CPP/CPP_ vectors | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 CPP/CPP_ vectors diff --git a/CPP/CPP_ vectors b/CPP/CPP_ vectors new file mode 100644 index 0000000..39657c6 --- /dev/null +++ b/CPP/CPP_ vectors @@ -0,0 +1,26 @@ +#include +#include +using namespace std; + +int main(){ + + vector v; + v.push_back(1); + v.push_back(2); + v.push_back(3); + v.push_back(4); + v.push_back(5); + cout<<"size : "<