代码搜索:stdlib

找到约 10,000 项符合「stdlib」的源代码

代码结果 10,000
www.eeworm.com/read/382454/9025708

h text.h

#include "stdlib.h" #include "memory.h" class CFile { char c; FILE *fp; public: void open(); void put(); };
www.eeworm.com/read/283325/9028603

lib ansistdlib.lib

ansiStdlib {ANSI 'stdlib' documentation } ansiStdlib {ansiStdlib} {VxWorks API Reference} {OS Libraries} {} {}
www.eeworm.com/read/382395/9031212

c srch_env.c

#include #include void main (int argc, char *argv[]) { char path[128]; _searchenv(argv[1], "LIB", path); if (path[0]) printf("Pathname: %s\n", path)
www.eeworm.com/read/382395/9031948

c atexit.c

#include #include void first(void) { printf("First function registered\n"); } void second(void) { printf("Second function registered\n"); } void main (vo
www.eeworm.com/read/382395/9031970

c showpath.c

#include #include void main (void) { char *entry; entry = getenv("PATH"); if (*entry) printf("PATH=%s\n", entry); else printf("PATH is not de
www.eeworm.com/read/382395/9032106

c min_max.c

#include #include void main (void) { printf("Maximum of %f and %f is %f\n", 10.0, 25.0, max(10.0, 25.0)); printf("Minimum of %f and %f is %f\n", 10.0,
www.eeworm.com/read/283196/9036123

c efence.c

#include #include int main() { char *ptr = (char *) malloc(1024); ptr[0] = 0; /* Now write beyond the block */ ptr[1024] = 0; exit(0); }
www.eeworm.com/read/283196/9036573

c system1.c

#include #include int main() { printf("Running ps with system\n"); system("ps -ax"); printf("Done.\n"); exit(0); }
www.eeworm.com/read/283196/9036575

c system2.c

#include #include int main() { printf("Running ps with system\n"); system("ps -ax &"); printf("Done.\n"); exit(0); }
www.eeworm.com/read/283196/9036676

c showenv.c

#include #include extern char **environ; int main() { char **env = environ; while(*env) { printf("%s\n",*env); env++; } exit(0); }