Answers for "hello world C++, C plus plus hello world"

C++
0

hello world C++, C plus plus hello world

#include<iostream>    
using namespace std;    

int main()    
{    
    cout<<"Hello World"<<endl;    
    return 0;    
}
Posted by: Guest on October-24-2021

Browse Popular Code Answers by Language