C++ HelloWorld code

This is a simple C++ HelloWorld code:

For running it on Visual Code check out this video:
https://www.youtube.com/watch?v=DIw02CaEusY&vl=en

#include <iostream>
using namespace std;
int main(){
cout << "Hello World" << endl;
return 0;
}

No comments:

Post a Comment