You can create source files in a text editor, but you must then get a separate compiler and linker and build it on the command line.
As an alternative, you can get an integrated development environment (IDE), which combines editor, compiler, linker and so forth.
The compiler converts your source code into binary
object code, and the linker then sticks together your
object modules with any other ones you might be using (i.e. third party libraries) to create a final executable file.
Here are some fre IDE options:
- Microsoft Visual C++ Express (don't have link, but google will find it)
- Codeblocks:
http://www.codeblocks.org/
- wxDevC++
On Windows, I would recommend Visual C++, but that's just my opinion.
Regards
-Xander314