hello world for cpp code example
Example: hello world c++
#include <iostream>
using namespace std;
int main() {
cout << "Hello World" << endl; // endl = '\n'
return 0;
}
#include <iostream>
using namespace std;
int main() {
cout << "Hello World" << endl; // endl = '\n'
return 0;
}