代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/388617/8595496

cpp append.cpp

// append.cpp -- appending information to a file #include #include #include #include // (or stdlib.h) for exit() const char * file = "guests.txt";
www.eeworm.com/read/388617/8596474

cpp count.cpp

// count.cpp -- counting characters in a list of files #include #include #include // or stdlib.h // #include // for Macintosh int main(int
www.eeworm.com/read/388617/8596543

cpp append.cpp

// append.cpp -- appending information to a file #include #include #include #include // (or stdlib.h) for exit() const char * file = "guests.txt";
www.eeworm.com/read/432377/8608253

c mallocs.c

/* * mymalloc, myrealloc, dupstr - memory allocation with error handling * * Environment: POSIX, ANSI * * Author: Wietse Venema. */ #include #include #include
www.eeworm.com/read/388441/8609001

h class.h

#include #include #include #include #include //--------------------------------------------------------------------------- #ifndef classH #d
www.eeworm.com/read/187475/8637583

c hashtree.c

#include #include #include #include #include "IntList.h" #include "HashTree.h" //////////////////////////////////////////////////////////////////////
www.eeworm.com/read/431298/8690196

c 58.c

#include #include int main() { FILE * sourcefile; FILE * keyfile; FILE * destfile; char ch,keych; int i; puts("****************************************"); puts("* T
www.eeworm.com/read/431150/8707865

h serial.h

#include "serialform.h" #include // some .h files used for serial port programming #include #include #include
www.eeworm.com/read/431150/8707920

h serial.h

#include "serialform.h" #include // some .h files used for serial port programming #include #include #include
www.eeworm.com/read/386886/8720164

cpp 商品货架.cpp

#include #include typedef int SElemType; typedef struct { //建立顺序栈存储结构 SElemType *base; SElemType *top; int stacksize;