Answers for "cpp hello world prog"

C++
27

hello world c++

#include <iostream>


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

c++ hello world

#inlude <iostream.h>

int main(){
        std::cout << "Hello, World!";
        return 0;
}
Posted by: Guest on April-26-2021
-1

hello world c++

#include <iostream>

using namespace std;

int main() {
  	cout << "Hello world";
	return 0;
}
Posted by: Guest on June-19-2021

Browse Popular Code Answers by Language