vimwiki/tech/C.wiki

29 lines
450 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
* sscanf(const char*, const char* format, ...)
- Given a string and format string, place contents into ...
== Also See ==
[[C++]]
[[index]]