list the latest c compiler available in current market

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • arunkumar2020
    New Member
    • Mar 2017
    • 1

    list the latest c compiler available in current market

    list the latest c compiler available in current market
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    There are may C compilers out there.
    It really depends on the operating system you are using...

    If you're using Linux to develop your application, then maybe you'd be interested in using the latest version of the GCC, the GNU Compiler Collection.

    If your using Windows to develop your application, then maybe you'd be interested in using the latest version Visual C/C++.

    There are a lot of compilers out there so you should do some research and discover what best fits your needs.

    Comment

    • donbock
      Recognized Expert Top Contributor
      • Mar 2008
      • 2427

      #3
      Perhaps you mean latest version of the C Standard rather than the vendor that most recently produced a compiler. The various versions of the C Standard are identified by the years they were approved.
      • C89. First ANSI Standard for C.
      • C90. Essentially the same as C89.
      • C95. Added wchar.h, wctype.h, digraphs, __STDC_VERSION_ _
      • C99. Added long long, _Bool, _Imaginary, _Complex, stdint.h, tgmath.h, fenv.h, complex.h, inline functions, // comments, variable length arrays, variadic macros, and more.
      • C11. Added type generic expressions, threads.h, stdatomic.h

      These standards may be clarified by Technical Corrigenda to fix typos or clarify confusing language.

      Comment

      Working...