Known Versions of C programming language

Last Updated :

Basically, C was originally developed at Bell Labs by Dennis Ritchie between 1972 and 1973 to make utilities running on Unix.

It is being updated, there are various known versions of C programming language.

These are various published Versions of C++.

Versions :

Version Standard Release Date Description
Birth Birth 1972 First version release year in 1972
K&R n/a 1978-02-22 The ‘C Programming Language’ Book is published in 1978 by founders. Used as a reference book to date.
C89 ANSI X3.159-1989 1989-12-14 ISO and ANSI standardized C language in 1989

C90 ISO/IEC 9899:1990 1990-12-20 First standard version is ISO/IEC 9899:1990
C99 ISO/IEC 9899:1999 1999-12-16 It is previously known as C9X.
C11 ISO/IEC 9899:2011 2011-12-15 The latest standard version is ISO/IEC 9899:2011
C18 ISO/IEC 9899:2018 June-2018 The latest version of C is C18
C23 ISO/IEC 9899:2023 2023-04-01 It was started in 2016 informally as C2x.



Refer for Versions of C++

This article is contributed by Raju Kumar. If you would like to contribute, you can also mail your article to raju.cplusplus@gmail.com. Please suggest your improvement for this article if you find anything incorrect.

Comment
Next Article
Mithlesh Upadhyay Published 28 Apr, 2020 · 1 min read

Mithlesh Upadhyay is a Computer Science and AI expert from Madhya Pradesh with strong academic background (BE in CSE and M.Tech in AI) and over six years of experience in technical content development. He has contributed tech articles, led teams, and worked in Full Stack Development and Data Science. He founded the w3colleges.org portal for learning resources.

Article Tags :

Similar Reads

  • What should we use void main() or int main() ?

    There is question that what should we use void main() or int main() ? void main() { /* ... */ } Or, int main() { /* ... */…

    2 min read
  • C Comments

    Prerequisite – C Language Introduction C comments explain code and improve readability. These do not affect program execution. You can use comments in C to clarify code and describe…

    1 min read
  • C Programming Language Standard

    Prerequisite – C Language Introduction The C programming language has various versions: C89/C90, C99, C11, and C18. C89/C90: Released in 1989/1990. It introduced key language features. C99: This…

    2 min read
  • Features of C Programming Language

    Prerequisite – C Language Introduction C is a simple language made in 1972 by Dennis Ritchie. It’s for system programming. C has low-level memory access, basic keywords, good…

    1 min read
  • C Language Introduction

    C is a programming language developed by Dennis Ritchie in 1972. It has a significant historical impact. It was originally created at Bell Laboratories of AT&T Labs for…

    4 min read
  • Code editors

    Code editors are where programmers spend most of their time. There are two main types of code editors: IDEs and Lightweight editors. IDEs (Integrated Development Environments) IDEs (Integrated…

    1 min read