Answers for ""hello" = "hello" cpp"

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 in c++

#include <bits/stdc++.h>

using namespace std;

int main(){
	cout << "hello world! n"; 
}                                                     //code by goukl aakash
Posted by: Guest on August-02-2020

Browse Popular Code Answers by Language