From 0e904e5d86200233f0fac748140e59adc655b0ec Mon Sep 17 00:00:00 2001 From: mansimarkaur Date: Thu, 18 Jan 2018 16:46:12 +0530 Subject: [PATCH] Adds vector with numbers --- hello.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hello.cpp b/hello.cpp index 16e91de..0b96067 100644 --- a/hello.cpp +++ b/hello.cpp @@ -1,8 +1,12 @@ #include +#include using namespace std; int main(){ - cout<<"hello world"; + vector v; + for(int i = 0; i<9; i++){ + v.push_back(i); + } return 0; } \ No newline at end of file