vimwiki/lang/C.wiki

25 lines
289 B
Plaintext
Raw Normal View History

2021-09-22 14:09:42 +00:00
= C =
Systems language. One of the fastest langs around
== Memory ==
2021-09-24 04:22:57 +00:00
* [[bithacks]] - Wacky was to break memory
2021-09-22 17:23:25 +00:00
2021-10-11 03:22:53 +00:00
== stdlib ==
standard library functions
* man atoi
- string to int
* man strtol
- string to long
* man fgets
- get string from file
2021-09-22 17:23:25 +00:00
== Also See ==
[[C++]]
2021-09-24 04:22:57 +00:00
[[index]]