Best Program For Coding C Mac

Active5 years, 1 month ago

As much as choice of a font is subjective there are important criteria to consider when choosing a programming font. The characters should be clear, easy to read, in cases of clashing ones such as 1, l, i or O, o, 0 easily distinguishable, differences between different kinds of brackets, quotes and parentheses should be clear, punctuation should be emphasized and they shouldn't break up. It supports syntax highlighting for practically any programming language you can think of, plus it contains code snippets. These things can be expanded by downloading third-party add-ons.

What is the best software ( open source ) for programming on c++ a Mac ?

any suggestions?

EvertonEverton
Mac

4 Answers

Ignacio Vazquez-Abrams

Best Program For Coding

Ignacio Vazquez-Abrams
613k111 gold badges1108 silver badges1196 bronze badges

You don't need anything special to program C++ on the Mac. The only real requirement is to install the developer tools from Apple. This provides the compiler tool-chain and development headers needed to write and compile standards compliant C++ on OS X which is really all you need.

Once you have done that it's a case of either using Xcode to manage your projects and compile your source, or outsourcing to an external build system and possibly an external editor.

A lot of people are happy just to use the default tools. Personally speaking I favour textmate as an editor and I use Waf as a build system so that I can compile my code on many platforms and am not tied into to OS X per-se.

jkpjkp
49.6k23 gold badges95 silver badges101 bronze badges

Eclipse works reasonably well on Mac. The requirement that your IDE be open-source is a little odd. More important that it works well, right?

PotatoswatterPotatoswatter
113k18 gold badges216 silver badges373 bronze badges

Textmate is the best option that I've tried so far. I, personally, found Xcode rather annoying to use, and Textmate was perfect for my use. The only potential issue is that you have to pay for it (after a 30 day trial). You can download it at: http://macromates.com/.

OrneryPlatypusOrneryPlatypus

Sample Coding C++

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