vimwiki/lang/C.wiki

27 lines
342 B
Plaintext

= C =
Systems language. One of the fastest langs around
== Memory ==
* [[bithacks]] - Wacky was to break memory
== stdlib ==
standard library functions
* man atoi
- string to int
* man strtol
- string to long
* man fgets
- get string from file
* *calloc*
- Allocates memory and sets it to zero
== Also See ==
[[C++]]
[[index]]