Tagged Questions
5
votes
1answer
610 views
Which C99 features are available in the MS Visual Studio compiler?
It's well known that Microsoft's Visual Studio compiler does not support C99, and it looks like they have no plans to support it.
However, the compiler does include some cherry picked features such ...
2
votes
3answers
355 views
Why doesn't the Visual Studio C compiler like this?
The following code compiles fine on Linux using gcc -std=c99 but gets the following errors on the Visual Studio 2010 C compiler:
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.40219.01 ...
7
votes
3answers
5k views
Does Microsoft visual studio 2010 support c99?
I would like to know if Microsoft Visual Studio 2010 supports C99. If not, how can I use the standard types like intptr_t and uintptr_t?
1
vote
3answers
299 views
Pointer mismatch for actual parameter?
I have a function which creates an array of pointers. The function which allocates the memory returns the new memory pointer through a parameter passed to the function. The simplest code which can ...
2
votes
1answer
342 views
C99 fenv.h for MS compilers
Anyone know of a decent C99 fenv.h implementation for MS compilers?
I imagine this wouldn't be difficult to do; I'm just looking to save some time.
2
votes
1answer
615 views
Visual Studio 2008 Restrict to ANSI C
I want to restrict microsoft visual studio so that it can only run "C99" (ANSI C) code. Can any one give me some guideline?
2
votes
1answer
197 views
Dots in Variables? VC9 gives parsing errors when building beecrypt
I want to compile the beecrypt library under VS2008. But several of the below structures produce a syntax error (C2059 syntax error: '.'):
const hashFunction md5 = {
.name = "MD5",
.paramsize = ...
6
votes
2answers
2k views
C99 complex support with visual studio
I would like to use complex numbers as defined in C99, but I need to support compilers which do not support it (MS compilers come to mind).
I don't need many functions, and implementing the needed ...
65
votes
10answers
37k views
Visual Studio support for new C / C++ standards?
I keep reading about C99 and C++11 and all these totally sweet things that are getting added to the language standard that might be nice to use someday. However, we currently languish in the land of ...
59
votes
7answers
48k views
C99 stdint.h header and MS Visual Studio
To my amazement I just discovered that the C99 stdint.h is missing from MS Visual Studio 2003 upwards. I'm sure they have their reasons, but does anyone know where I can download a copy? Without ...
