From 3977b604b92f0cc72aa714327d5696805be671dd Mon Sep 17 00:00:00 2001 From: ROUSHAN KUMAR <52878060+citecode@users.noreply.github.com> Date: Thu, 17 Oct 2019 14:06:43 +0530 Subject: [PATCH] New Things Added --- 2017/00_primitivas/cpp/nombre.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/2017/00_primitivas/cpp/nombre.cpp b/2017/00_primitivas/cpp/nombre.cpp index 375054cd..fb14d489 100644 --- a/2017/00_primitivas/cpp/nombre.cpp +++ b/2017/00_primitivas/cpp/nombre.cpp @@ -2,10 +2,11 @@ using namespace std; -int -main() +int main(void) // it is good to write this as this clarifies the main() more { cout << "The World is a Vampire!" << endl; + cout<<"We can also use " + <<"overload this operator"; return 0; }