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
|
2022-01-17 18:45:01 +00:00
|
|
|
* *calloc*
|
2022-01-10 18:15:01 +00:00
|
|
|
- Allocates memory and sets it to zero
|
2022-01-17 18:45:01 +00:00
|
|
|
* sscanf(const char*, const char* format, ...)
|
|
|
|
- Given a string and format string, place contents into ...
|
2021-09-22 17:23:25 +00:00
|
|
|
|
|
|
|
== Also See ==
|
|
|
|
|
|
|
|
[[C++]]
|
|
|
|
|
2021-09-24 04:22:57 +00:00
|
|
|
[[index]]
|