Standard C Library
- http://de.wikipedia.org/wiki/Standard_C_Library
- Die String-Eingabefunktionen gets() und scanf() sind die Quelle vieler Pufferüberläufe, und die meisten Bücher über C raten von deren Verwendung ab.
- libc.so.6 unter Linux, msvcrt.dll unter Windows
- glibc
- http://www.cplusplus.com/reference/clibrary/
- http://www2.hs-fulda.de/~klingebiel/c-stdlib/index.htm
- http://home.fhtw-berlin.de/~junghans/cref/FUNCTIONS/funcref.html
-
#include <stdio.h> /* input and output functions */
#include <string.h> /* string related functions */
#include <stdlib.h> /* memory allocation, rand, and other functions */
#include <math.h> /* math functions */
#include <time.h> /* time related functions */
Siehe auch
Klassifikation
• C