- #1
dduardo
Staff Emeritus
- 1,906
- 3
Contents
1. Getting a C++ Compiler and Compiling Your First Program
2. Simple Datatypes and Declarations
3. Operators and Expressions
4. Input and Output (I/O)
5. Selection Statements
6. Iterative Statements
7. Arrays
8. Functions
1. Getting a C++ Compiler and Compiling Your First Program
Getting a C++ Compiler
For Windows users, especially beginners, I suggest getting an integrated development environment (IDE) for doing your work. You will get syntax highlighting, debugging, and compiling all in one package. For these tutorials, I suggest you use Bloodshed’s Dev-C++. It is a free IDE that has a compiler based on GCC. You can get it here:
http://www.bloodshed.net/devcpp.html
I’ve just tried the latest beta on windows and it works. If you want to run a different compiler or IDE that is fine, but it would be easier if you all stick to one type of environment for windows. I’ve also...
Continue reading...
Last edited by a moderator: