From 5b3a2942e9a229a3a6de31ee02e91cb484ffe361 Mon Sep 17 00:00:00 2001 From: nikhil32002 <69077656+nikhil32002@users.noreply.github.com> Date: Fri, 2 Oct 2020 22:54:40 +0530 Subject: [PATCH] Update Hello world 1.two methods to print the statements.. 2.In this program i have use std namespace,which plays very important role in c++ programming.. --- Hello world | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Hello world b/Hello world index 3b7617c..c26dea6 100644 --- a/Hello world +++ b/Hello world @@ -1,6 +1,9 @@ -#include +#include +using namespace std; int main() { printf("Hello, World!"); + //we can also use cout statement for print the statement. + cout<<"hello world!"<<"\n"; return 0; }