代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/162078/10337848

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/162078/10338086

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
www.eeworm.com/read/162078/10341487

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 def
www.eeworm.com/read/162078/10341542

c putenv.c

#include #include void main(void) { if (putenv("BOOK=Jamsa\'s C & C++ Programmer\'s Bible")) printf("Error writing to environment\n"); else { int
www.eeworm.com/read/162078/10341656

c atexit.c

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

c hello.c

/*hello.c*/ #include #include #include "hello.h" int main() { val32_t i = 5; printf("hello, embedded world %d\n",i); }
www.eeworm.com/read/161772/10375942

c fscanf.c

/* Reading formatted file data with fscanf(). */ #include #include int main( void ) { float f1, f2, f3, f4, f5; FILE *fp; if ( (fp = fopen("INPUT.TXT", "r"))
www.eeworm.com/read/354009/10396991

dp2 huomen.dp2

huomen.o: D:/PROGRA~1/icc/include/iom16v.h D:/PROGRA~1/icc/include/macros.h D:/PROGRA~1/icc/include/stdlib.h D:/PROGRA~1/icc/include/_const.h D:/PROGRA~1/icc/include/limits.h F:\工程文件\程序\12864/12864.h
www.eeworm.com/read/354009/10397041

mak main.mak

CC = iccavr CFLAGS = -ID:\PROGRA~1\icc\include -e -DATMEGA -DATMega16 -l -g -Mavr_enhanced ASFLAGS = $(CFLAGS) -Wa-g LFLAGS = -LD:\PROGRA~1\icc\lib -g -ucrtatmega.o -bfunc_lit:0x54.0x4000 -dra
www.eeworm.com/read/161394/10417999

cpp 1.cpp

#include #include #include #include void main() { unsigned long i,*p; int n; printf("input n:"); scanf("%d",&n); p=(unsigned long*)ma