代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/137531/13314713

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/137531/13315376

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/137531/13315394

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/137531/13315594

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/137369/13325805

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/137366/13326135

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/136911/13354448

c uncompress.c

#include #include #include "tree.h" #include "compress.h" #include "uncompress.h" int CheckHead(char *head,FILE *fp) { }
www.eeworm.com/read/136879/13356135

cpp fig16_21.cpp

// Fig. 16.21: fig16_21.cpp // Using atof #include #include int main() { double d = atof( "99.0" ); cout
www.eeworm.com/read/136879/13356136

cpp fig16_23.cpp

// Fig. 16.23: fig16_23.cpp // Using atol #include #include int main() { long l = atol( "1000000" ); cout
www.eeworm.com/read/136879/13356163

cpp fig16_22.cpp

// Fig. 16.22: fig16_22.cpp // Using atoi #include #include int main() { int i = atoi( "2593" ); cout