Update shit

This commit is contained in:
Miloslav Ciz 2022-01-25 14:33:05 +01:00
parent 29840b371b
commit cb6f066f97
2 changed files with 26 additions and 0 deletions

5
c.md
View file

@ -4,6 +4,11 @@ C is a low-level, statically typed imperative compiled language, the go-to langu
C is usually not considered an easy language to learn because of its low level nature: it requires good understanding of how a computer actually works and doesn't prevent the programmer from shooting himself in the foot. Programmer is given full control (and therefore responsibility). There are things considered "tricky" which one must be aware of, such as undefined behavior of certain operators and raw pointers. This is what can discourage a lot of modern "coding monkeys" from choosing C, but it's also what inevitably allows such great performance -- undefined behavior allows the compiler to choose the most efficient implementation.
For more about C see:
- [C pitfalls](c_pitfalls.md)
- TODO
## History and Context
## Standards