Answers for "c hello world g++"

C++
26

hello world c++

#include <iostream>


int main(){
 std::cout <<"Hello World" << std::endl;
 return 0;
}
Posted by: Guest on February-07-2020
-1

hello world c++

#include <iostream>

using namespace std;

int main() {
    cout << "Hello World!";
    return 0;
}
Posted by: Guest on May-23-2021

Browse Popular Code Answers by Language