Oct 25, 2019
Hello World
C++ Programming 839 views
/* include header file */
#include <iostream>
/* tells the compiler to use the std namespace */
using namespace std;
int main() {
/* print text on screen */
cout << "Hello World!\n";
return 0;
}