It's programming time!/C++/Hello World!
From Create Your Own Story
< It's programming time! | C++
Revision as of 06:12, 26 May 2016 by DirtyMeStoryTime (Talk | contribs)
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World";
return 0;
}
So, if you have ever read anything about programming, people talk about this. Hello World!
This program is the first one people ever create, in almost every single programming language.
So, if you want to understand all the theories, well, go take a programming course! lol, I am not a teacher, just someone interested.
What is this?
Well, lets break it down step by step.
[[It's programming time!/C++/{}|The { }'s]]
[[It's programming time!/C++/cout << "Hello World";|cout << "Hello World";]]