This commit is contained in:
Miloslav Ciz 2024-06-07 16:46:05 +02:00
parent 50af01815e
commit 8b1d7a4381
30 changed files with 1893 additions and 1799 deletions

2
c.md
View file

@ -26,7 +26,7 @@ C was developed in 1972 at [Bell Labs](bell_labs.md) alongside the [Unix](unix.m
## Standards
C is not a single language, there have been a few standards over the years since its inception in 1970s. The notable standards and versions are:
C is not a single language, there have been a few standards over the years since its inception in 1970s. The standard defines two major parts: the base language and standard library. Notable standards and versions are:
- **K&R C**: C as described by its inventors in the book *The C Programming Language*, before official standardization. This is kind of too ancient nowadays.
- **C89/C90 (ANSI/ISO C)**: First fully standardized version, usable even today, many hardcore C programmers stick to this version so as to enjoy maximum compiler support.