代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/402057/7807117

cpp 11_92.cpp

#include #include #include #include void main() { int r; char c; fstream file; char fn[15],buf[100]; coutfn; f
www.eeworm.com/read/404129/7810475

cpp main.cpp

#include #include #include"sort.cpp" #include"knap.cpp" #include"friend.cpp" void main() { int n=5; int c=10; int w[]={0,2,2,6,5,4};//下标从1-n有效 int p[]={0,
www.eeworm.com/read/199930/7814337

h common.h

#include #include #include #include #include #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #defi
www.eeworm.com/read/399963/7818863

c efence.c

#include #include int main() { char *ptr = (char *) malloc(1024); ptr[0] = 0; /* Now write beyond the block */ ptr[1024] = 0; exit(0); }
www.eeworm.com/read/399963/7819111

c system1.c

#include #include int main() { printf("Running ps with system\n"); system("ps -ax"); printf("Done.\n"); exit(0); }
www.eeworm.com/read/399963/7819113

c system2.c

#include #include int main() { printf("Running ps with system\n"); system("ps -ax &"); printf("Done.\n"); exit(0); }
www.eeworm.com/read/399963/7819203

c showenv.c

#include #include extern char **environ; int main() { char **env = environ; while(*env) { printf("%s\n",*env); env++; } exit(0); }
www.eeworm.com/read/199740/7826123

cpp ch8_25.cpp

//********************** //** ch8_25.cpp ** //********************** #include #include #include int compare(const void* a, const void* b); char* l
www.eeworm.com/read/299754/7834518

c toto.c

#include #include int main(int argc, char **argv) { char buffer[96]; printf("- %p -\n", &buffer); strcpy(buffer, getenv("KIRIKA")); return 0; }
www.eeworm.com/read/299527/7846115

c 正弦生成函数.c

#include #include #include #define pi 3.14 main() { float sinval,normalval; int i,dacval; FILE *fp; fp=fopen("sinwave.h","w");//打开一个名为sinwave.h的文件,操作为写