Gmenfan83
Gmenfan83

Reputation: 2605

C++ IDE/ANSI compiler for Mac OSX?

I am taking a c++ course at school and need an ANSI compliant compiler, i was planning on using Xcode but know it is not ANSi compliant (or i believe so at least). Any tips o a good IDE/ANSI compliant compiler i can use on my Mac for this course? Thanks in advance.

Upvotes: 0

Views: 1470

Answers (1)

bames53
bames53

Reputation: 88235

Do you mean ANSI, as in ANSI C? You can go ahead and use Xcode, it has modes for the two common ANSI C dialects, c89 and c99.

If you're doing C++, the C++ compiler in Xcode also supports the common C++ standards, C++98, C++03. It also supports one of the most complete C++11 implementations available. However these standards aren't usually called 'ANSI C++' even though the American National Standards Institute does participate in the ISO standards setting process that creates them. But this is probably what is meant by your instructor.

If your instructor meant something else you'll have to provide more info, because as far as I'm aware "ANCI" is just gibberish in the context of C++.

Bottom line, Xcode will be fine.

Upvotes: 4

Related Questions