Finally! Hello World!

--Originally published at Programming Path

I’ve been trying to run hello world for a week but couldn’t. I’ve followed the instructions my teacher gave me, actually he made a YouTube tutorial and was easy to follow, but still, I couldn’t run “Hello World”!, I started to panic and call my brother for help. He said my code was fine and probably was the programs that were not fully installed. Guess what! It was true. My teacher helped me to install Cygwin correctly and I can run the code now. I’m so happy now!

Here is my code and the result after so much struggling:

hello-world

The code:

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