代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/421842/10694099

h header.h

#include #include #include #define L 8 //排序元素个数 #define FALSE 0 #define TRUE 1 typedef struct { int key; char otherinfo; }RecType; typedef RecType
www.eeworm.com/read/350922/10696361

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/350922/10697266

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/350922/10697284

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/350922/10697586

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/421785/10699135

c setbuf.c

/* reverse.c -- displays a file in reverse order */ #include #include int main(void) { printf("%d\n", BUFSIZ); return 0; }
www.eeworm.com/read/421711/10708282

cpp 11.cpp

#include #include #include #include #include int ProcNum = 0; int ProcRank = 0; int GridSize; // 疣珈屦眍耱
www.eeworm.com/read/350722/10716584

c _3pvr.c

#include #include #include void main(void) { FILE *v1; long i; double tmp; double tmp2; clrscr(); v1 = fopen("fft_v1.txt", "rb"); for (i = 0; i <
www.eeworm.com/read/350637/10725014

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/350637/10725347

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, 2