example hello world c++
Example 1: hello world c++
#include <iostream>
int main(){
std::cout <<"Hello World" << std::endl;
return 0;
}
Example 2: C++ hello world
std::cout << "Hello World" << std::endl;
#include <iostream>
int main(){
std::cout <<"Hello World" << std::endl;
return 0;
}
std::cout << "Hello World" << std::endl;