Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[cpp] Challenge 0 (Unreviewed) #445

Merged
merged 5 commits into from
Jan 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions challenge_0/cpp/dewie102/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Hello World
###### C++ 11

### 1. Approch to solving the probelm

Pretty self explainitory, just getting the basics down and making sure everything is correct.

### 2. How to compile and run this

In Windows - I used the Visual Studio C++ compiler, move to the proper directory and run:

```
cl.exe src/HelloWorld.cpp
HelloWorld.exe
```

### 3. How this program works

The program just outputs "Hello, World!" on the main output stream.
6 changes: 6 additions & 0 deletions challenge_0/cpp/dewie102/src/HelloWorld.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include <iostream>

int main(int argv, char** argc) {
std::cout << "Hello, World!" << std::endl;
return 0;
}