代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/416023/11044136

c execve.c

#include #include #include int main() { char *arg[]={"env",NULL}; char *envp[]={"PATH=/tmp","USER=sunq",NULL}; if(fork()==0){ if(("b
www.eeworm.com/read/470596/6904732

h rand32.h

#include int rand32(); double randNorm(); int randOnRange(int low, int high);
www.eeworm.com/read/470532/6912986

c myassert.c

#include "myAssert.h" #include #include void assertF(int condition,char* errorMsg) { if(!condition) { printf("\n%s\n",errorMsg);
www.eeworm.com/read/470033/6923184

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/470033/6923342

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/470033/6923449

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/470033/6923487

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/300347/6939048

c eth.c

//----------------------------------------------------------------------------- // Net ETH.C // // This module is the Ethernet layer //-------------------------------------------------------------
www.eeworm.com/read/217322/6964927

c execle.c

#include #include #include int main() { char *envp[]={"PATH=/tmp","USER=sunq",NULL}; if(fork()==0){ if(execle("/bin/env","env",NULL,en
www.eeworm.com/read/217322/6964932

c execve.c

#include #include #include int main() { char *arg[]={"env",NULL}; char *envp[]={"PATH=/tmp","USER=sunq",NULL}; if(fork()==0){ if(("b