Recent content by Kirtar11

Recommended Videos
  1. K

    Teaching myself C++ part 1. Hello world!

    You are using really outdated stuff This is a really good guide: http://www.cplusplus.com/files/tutorial.pdf 1) Get a new compiler 2) In the modern version of C++, including libraries is done like this #include #include etc. you don't need the .h Also, you should always have...