Answers for "how to write hello world in c++ using namespace std"

C++
-1

hello world program in c ++ using standard namespace

//using namespace 

#include<iostream>
using namespace std;
int main()
{
    cout<<"hello world"<<endl;
}
Posted by: Guest on April-15-2021

Browse Popular Code Answers by Language