Question

what is the compiler of c that visual studio 6 use? I starting work with c and need to study more about c. In this work, we use visual c++ 6. I know have GCC, but where i can go deep about how compilation works for C language on visual c++ 6?

Était-ce utile?

La solution

what is the compiler of c that visual studio 6 use?

The Visual C++ IDE runs the cl.exe Microsoft compiler.

As to which standard of C compiler it is using, my guess is it's probably a C90 or C95 compiler, only because, from memory, the Visual C++ IDE dates back to the mid/late nineties. To get a more accurate date look in the About box.

But remember, like Microsoft compilers of today, Microsoft does like to create compilers that are not always fully compliant with the standard, so there may be differences.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top