Posts: 1,000
Threads: 253
Joined: Feb 2008
I want to start working with C++ just for kicks.
What is the best free compiler? Any experiences? Any that I should stay away from?
Thanks,
jimmy Vig
Posts: 12,071
Threads: 140
Joined: Dec 2002
Posts: 1,000
Threads: 253
Joined: Feb 2008
I'll check it out. That's what I was leaning towards in the first place. I just hate downloading all these programs to find one that I like. Thanks.
First C++
then PHP...
I've got the work cut out for me
Posts: 1
Threads: 0
Joined: Sep 2010
Bloodshed Dev-C++ is a full-featured Integrated Development Environment (IDE) for the C/C++ programming language. It uses Mingw port of GCC (GNU Compiler Collection) as it's compiler. Dev-C++ can also be used in combination with Cygwin or any other GCC based compiler.
Features are :
- Support GCC-based compilers
- Integrated debugging (using GDB)
- Project Manager
- Customizable syntax highlighting editor
- Class Browser
- Code Completion
- Function listing
- Profiling support
- Quickly create Windows, console, static libraries and DLLs
- Support of templates for creating your own project types
- Makefile creation
- Edit and compile Resource files
- Tool Manager
- Print support
- Find and replace facilities
- CVS support
Posts: 763
Threads: 261
Joined: Jul 2012
Sorry to kick this thread up.
If you want to learn to use QM better, is learning C++ a good way to go?
With "learn to use QM better" I mean:
- learning the more "advanced" things that QM can do
- learning how to 'hook into' the Windows API correctly
Posts: 12,071
Threads: 140
Joined: Dec 2002
C++ probably will be easier to learn after QM. As well as QM after C++.
C++, QM and other programming languages can use the same Windows API. Learn in MSDN Library.
When you know C++ a little, you can find C++ code on the internet and use something similar in QM. Unlike many other languages, C++ often uses Windows API directly, like you can use in QM. C++ is the best language if you want full and easy access to all Windows API. In MSDN Library all Windows API reference is in C++.
Posts: 763
Threads: 261
Joined: Jul 2012
Ok!
Thank you for this info!