Intro to C++: Hello World


Code:

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

Comments

Popular posts from this blog

What is Unified Model Language (UML) ?