Raiden Oebel’s programming page!
C\C++ LANGUAGE AGNOSTIC’s.
C programming – CTurbo – C++ programming
- What is a compiler?
- Hello World .cpp
- Variables
- Blocking Code
- Strings
- Math operators
- Functions
- Polymorphism
——————————————[CODE]——————————————-
#include <iostream.h>
#include <stdlib.h>
using namespace std;
int NOTHING = 0; // Integer is a fancy word for number
int main(int argc, *char argv[])
{ // This is an open bracket it starts the body definition of our program.
cout<<“Hello my name is Raiden this is my first c++ program!”<< endl;
return NOTHING;
}; // This is the end of our program it end’s with a closing bracket