vote up 2 vote down star

Hey,

I was wondering if, and to what degree, does Microsoft's Visual C++ compiler conform to the current C (C90/C99) and C++ (ISO/IEC 14882:2003) standards. Unfortunately I'm only able to find partial information on the subject, I may be looking at all the wrong places.

Any pointers to related resources are much appreciated. Thanks in advance.

Edit: Since is looks like this is a most touchy subject, I'd be content with a yes/no answer on whether MSVC wholly conforms to C90...I've come to the understanding that this is not the case for C99 (naturally), and I still have no clue about C++..

Edit2: Thanks to everyone for their answers. I've accepted Mr. Rushakov's answer but upvoted all relevant answers, which were all helpful.

flag
2  
Oh dear, a can of worms you have opened. – tinkertim Oct 21 at 10:32
1  
Yeah, the product is called "Visual C++". Not "Visual C/C++" :P – MSalters Oct 21 at 10:36
msdn.microsoft.com/en-us/library/… – dirkgently Oct 21 at 10:36
1  
@OP: The most important thing that you've missed out in your question is the version of VS you are using/going to use. That kind of decides how big a can of worms you have to deal with. – dirkgently Oct 21 at 10:56
2  
How can this question ever be subjective? I can see how it is a touchy subject, but subjective? I don't think so, an answer could definitely be verified and doesn't depend on the speaker. – Joachim Sauer Oct 21 at 11:39
show 3 more comments

6 Answers

vote up 7 vote down check

Perhaps MSDN's Nonstandard Behavior page for Visual C++ will enlighten you? Make sure you look at the version you're most interested in (the box on the right-hand side).

Since MSDN's links change all the time (and who knows why), here's the main content from the page on VS2008, so when the link breaks and someone comes across this answer, they can Google and find the correct page:

Nonstandard Behavior

The following topics are some of the known places where the Visual C++ implementation of C++ does not agree with the C++ standard. The section numbers refer to section numbers in the C++ standard.

link|flag
That was indeed helpful, wrt C++. – Michael Foukarakis Oct 22 at 5:26
vote up 1 vote down

__try is marked as an extension

link|flag
vote up 2 vote down

I don't use VS 2008 yet, so I can only speak for VS 2005.

It doesn't support C99. Support for C89/90 has always been good in VC and I'm not aware of any non-compliance issues with it.

C++98 support has a number of issues, some of them are documented by MS as known issues and some are plain bugs. I made a blog entry to use as a "notebook" for various VS 2005 C++ bugs I encounter in practice. If you wish, you can take a look here, although this list is probably far from being complete

link|flag
vote up 1 vote down

Standards compliance for C and C++ has been rather poor for VS. Things began changing with 2005 and is getting better. VS2010 is what I am really looking at with quite a lot of features from C++0x. Most of the time though, I end up Googling with the following keywords:

  • msdn ANSI C conformance
  • msdn ISO C++ conformance

etc. when I really really need to figure out why something doesn't work as defined.

link|flag
vote up 2 vote down

My pet peeves, which most programmers find unimportant but which I personally find to hurt readability a lot, is that VC++ is unable to compile the following C++ code:

bool result = true and not false;

… because VC++ doesn’t recognize and, or and not (along with the rest of ISO 646) as valid tokens.

Clarification: The standard mentions the treatment of the above tokens in §2.12, marks them as reserved in §2.11 and defines an equivalence mapping for them in §2.5 to the more conventional operator representations (e.g. and corresponds to &&). It isn’t clear why they get a special status next to the other keywords. Even more confusingly, appendix C2.2 suddenly calls them “keywords”. Still, the standard is absolutely clear about their treatment and semantics. VC simply doesn’t implement these paragraphs (unless you specify the /Za flag during compilation).

link|flag
3  
Works for me. VS2005, /Za – MSalters Oct 21 at 11:32
1  
i always wondered where those keywords were hiding, and why i couldn't use them! thx! msdn.microsoft.com/en-us/library/… – Anacrolix Oct 21 at 12:12
1  
Keywords? These have never been keywords. These are macros defined in <iso646.h>. I don't know how VC can be "unable" to recognize a macro, if you haven't forgot to include the appropriate header. – AndreyT Oct 21 at 14:08
1  
AndreyT: no, you are definitely mistaken; they are keywords, they are defined in the standard (look it up!) and they do not require inclusion of <ciso646> in order to work on a fully compliant compiler. – Konrad Rudolph Oct 21 at 18:36
1  
@Konrad Rudolph: No, the standard doesn't list any of them as keywords. The complete table of keywords is available in 2.11/1 and none of these tokens are in the table. Section 2.11 does have another table with these alternative tokens, but it explicitly states that these are just alternative tokens and that they are reserved. Nothing in 2.11 refers to these tokens as "keywords". – AndreyT Oct 22 at 7:07
show 5 more comments
vote up 1 vote down

Visual C++ 2k3, 2k5, and 2k8, conform to C89, and C++98.

Some additional features are cherry-picked from C99, and there are a few enhancements on top of C++98.

link|flag
That’s the point, though: it doesn’t fully conform to C++98 – although admittedly standard compliance has gone up considerably since the dark ages of VC6. – Konrad Rudolph Oct 21 at 11:24
ouch, tbh, i couldn't care less about c++ conformance, and I use C++ everyday. however lack of c99 really hurts. – Anacrolix Oct 21 at 12:09

Your Answer

Get an OpenID
or

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