hello world in c 2b 2b

Solutions on MaxInterview for hello world in c 2b 2b by the best coders in the world

showing results for - "hello world in c 2b 2b"
Julian
22 Apr 2019
1// Your First C++ Program
2
3#include <iostream>
4
5int main() {
6    std::cout << "Hello World!";
7    return 0;
8}
Amanda
28 Apr 2020
1#include <bits/stdc++.h>
2
3using namespace std;
4
5int main(){
6	cout << "hello world! \n"; 
7}                                                     //code by goukl aakash
Niklas
22 Jan 2018
1#include <iostream>
2using namespace std; 
3
4int main(){
5  cout << "Hello World" << endl;
6  return 0;
7}
Elif
05 Sep 2019
1#include <iostream>
2using namespace std;
3int main(){
4  std:cout<< "hello world" << std:endl;
Pietro
02 Sep 2020
1#include <iostream>
2using namespace std;
3
4int main() {
5  cout << "Hello World!";
6  return 0;
7}
8
Vanessa
10 May 2016
1#include <iostream>
2
3using namespace std;
4
5int main()
6{
7  	cout << "Hello World";
8  	return 0;
9}
Deshaun
10 Feb 2016
1#include <iostream>
2
3int main() {
4  std::cout << "Hello World!";
5  
6  return 0;
7}
Niko
29 Sep 2018
1#include <iostream>
2int main() {
3  std::cout << "Hello World!";
4  
5  return 0;
6}
Sebastián
20 Jan 2017
1#include<iostream>
2using namespace std;
3int main(){
4  cout<<"hello World"<<endl;
5  return 0;
6}
Hamza
12 Feb 2016
1#include <iostream>
2int main(){
3  std::cout << "Hello World" << std::endl;
4  return 0;
5}