New to C++

Pages: 12
Mar 7, 2011 at 5:56pm
There are many videos on youtube that may help you learn C++. Do a search for C++ tutorials, for example, and look for beginner tutorials or lesson 1, see if you can grasp some of the concepts.
Last edited on Mar 7, 2011 at 5:57pm
Mar 7, 2011 at 6:50pm
closed account (zb0S216C)
There are many videos on youtube that may help you learn C++.

If the video is valid then maybe you could. However, I wouldn't recommend it. I've seen a C++ tutorial video on YouTube, and honestly, if he talked any more bull***t it would be coming out of his ears.

I recommend reading books written by experienced programmers with backgrounds in game programming, application development, etc...
Mar 7, 2011 at 6:56pm
Haha, oh my good heavens, one of my favorite sites dealing with this is a website created by a guy I know, here's a direct quote from the website:

#include <iostream.h> //ALWAYS INCLUDE THIS!
#include <stdio.h> //IF You want to pause use this.
using namespace std;
main()
{
cout << "Hello World!\n";
cout << "I'm a c++ program!\n";
system ("pause");
return 0;
}


I haven't laughed at any code this hard since going through a bunch of wtfs at
http://www.thedailywtf.com
Mar 7, 2011 at 7:06pm
closed account (zb0S216C)
1
2
3
4
5
6
7
8
9
10
#include <iostream.h> //ALWAYS INCLUDE THIS!
#include <stdio.h> //IF You want to pause use this.
using namespace std;
main()
{
cout << "Hello World!\n";
cout << "I'm a c++ program!\n";
system ("pause");
return 0;
}

The CPU will simply refuse to process this Lol.
Mar 7, 2011 at 7:10pm
Ugh that makes me sick.

1
2
3
4
5
6
7
8
#include<iostream>

int main()
{
    std::cout << "Hello World!\nI'm a C++ program!\n";
    std::cin.get();
    return 0;
}
Last edited on Mar 7, 2011 at 7:10pm
Topic archived. No new replies allowed.
Pages: 12