Here's the begging code that is usually the first thing a tutorial will start you on:
//include this file for cout #include <iostream.h>
int main() {
//print out the text string, "Hello, World!" cout << "Hello, World!" << endl;
return 0;
} It's reffered to as the 'Hello World' program, i wonder why .
You should really check out: C++ Beginners Tutorial you don't need any programming experience to work through that tutorial, but if your like me(you like a more "hands-on" approach) you go through the first few tutorials(still take you a few weeks/months) then just go off on your own and only use the tutorial/s as referrence(i made a text-based adventure program).
|