Beginning Cpp programming
From Sidvind
(Redirected from Beginning C programming)
| Article |
|---|
| Author: Estel |
| Date: N/A |
| Category: C/C++ |
[edit] Overview
In this tutorial I will try to explain how to code in C++. The enviroment I use is GNU/Linux and gcc. I will show you how to write your first program "hello world". Your first program Hello world Code: hello.cpp
This program will write out the message "hello world" in your console.
| Code: |
#include <iostream>
using namespace std;
int main(){
cout << "Hello world"<<endl;
return 0;
}
|

