代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/316980/13513245

h common.h

#include #include #include #include #include #include #include"time.h" #define TRUE 1 #define FALSE 0 #define OK 1 #defin
www.eeworm.com/read/316923/13514317

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/316923/13514574

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/316923/13514580

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/316923/13514651

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/316786/13517779

c exit.c

# include # include void main() { int month; int day; printf("please input the month number: "); scanf("%d", &month); switch (month) { case 1: case 3: ca
www.eeworm.com/read/316259/13526671

c op-2.c

#include #include #include #define TRUE 1 #define FALSE 0 typedef unsigned char byte; char mbuf[256]; int readmode; /* ?4
www.eeworm.com/read/315939/13534059

c alarm.c

#include #include #include int main() { int ret; ret=alarm(5); pause(); printf("I have been waken up.\n",ret); }
www.eeworm.com/read/315699/13538044

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/315631/13539290

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)