Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

does anybody knows what app to use to train to develop ? I'm am very (very) novice and I have to train myself at home on developing simple programs in the C++ language. Apps like DevC++ are not available for macs, what to you think I should do ? I'm not ready to create a partition on my macbook though.

share|improve this question

closed as off topic by Lusitanian, Shawn Chin, Adriano, lc., Robert Longson Oct 22 '12 at 10:05

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

If you have XCode you can write C and C++ programs. XCode is free as well.

share|improve this answer

You can use Qt, it's free if you don't make commercial programs and it is cross-platform.

share|improve this answer
2  
It's also free if you do make commercial programs. – sth Oct 21 '12 at 16:12
1  
Hm, the last time I checked you had to pay if you sold software made with Qt. – alestanis Oct 21 '12 at 16:16
1  
@sth qt.digia.com/Product/Licensing -> there you go. – alestanis Oct 21 '12 at 16:19
2  
You need that license if you want to modify/... Qt itself without making those changes open source. If you just want to link against the Qt libraries from your closed source programs, you can use the LGPL licensed version. LGPL says that you have to open source changes you make to the library. But for just using the library LGPL doesn't force you into anything specific for the rest of your codebase. – sth Oct 21 '12 at 16:30
Got it, thanks @sth! – alestanis Oct 21 '12 at 16:33
show 1 more comment

Are you looking for a compiler or an IDE?

For an IDE you could use Eclipse, XCode or you could just use any text editor. For compiler you should use g++ which you will get by downloading XCode from the appstore.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.