NO

Author Topic: List of C compiler for Windows  (Read 4699 times)


Abraham

  • Guest
Re: List of C compiler for Windows
« Reply #1 on: August 19, 2019, 04:11:26 AM »
TCC and PCC are limited to C99.

Not sure about Visual C++ and it's weird reverse compatibility.
C11 took atomic and thread from C++11, so it has those as well.
C++11 requires most of C99, except for a few things like VLA.
C++14 requires many things from C11, but not everything.
There is not need to support _Generic because templates are better in C++.

MinGW and Clang are up to standards.

POCC is clearly the one in the lead to matching standards.

Offline cosh

  • Member
  • *
  • Posts: 25
Re: List of C compiler for Windows
« Reply #2 on: December 27, 2020, 03:37:49 PM »
And...
Open Watcom C (http://www.openwatcom.org/)

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
May the source be with you