Pemrograman C++ : Program “Hello World!”

HW#include<iostream>

using namespace std;
int main()
{
cout<<“Hello World!”;
return 0;
}

Output :

 

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.