代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/321262/13410024

c 7-45.c

#include main() { int a=217; char b; printf("before toascii () : a value =%d(%c)\n",a,a); b=toascii(a); printf("after toascii() : a value =%d(%c)\n",b,b); }
www.eeworm.com/read/321257/13410100

h xhlb.h

#include #include struct lnode { int data; struct lnode *next; }; struct lnode *creat(); void paixu(struct lnode *h); void out(struct lnode *h); int length(struct lnode
www.eeworm.com/read/321224/13410532

h hebinglb.h

#include #include struct node { int data; struct node *next; }; struct node *creat(); void hebing(struct node *ha,struct node *hb); void out(struct node *h);
www.eeworm.com/read/321052/13412623

cpp huffmanencode.cpp

/* HuffmanEncode.cpp */ #include "iostream.h" #include "fstream.h" #include "stdlib.h" #include extern long putbuffer; // 编码时位流缓冲中的积聚的位数据
www.eeworm.com/read/320996/13414094

h operater.h

#include // cin 及 cout #include // strcpy(): 字符串复制 #include // system("cls") #include // 文件操作(写文件) #include "list.h" // 我们要创建类 List 的对象和
www.eeworm.com/read/320816/13417792

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/320816/13418052

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/320816/13418058

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/320816/13418136

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/319472/13451384

c setbuf.c

/* reverse.c -- displays a file in reverse order */ #include #include int main(void) { printf("%d\n", BUFSIZ); return 0; }