代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/456367/7350956

cpp binary.cpp

// binary.cpp -- binary file I/O #include // not required by most systems #include #include #include // (or stdlib.h) for exit() inline void eatline()
www.eeworm.com/read/455139/7377351

c stu_info_7.8.c

/*************************************************** *工程名:学生信息管理系统 *作者:Min Hu *日期:2008-6-10----2008-7-9 ****************************************************/ #include #include
www.eeworm.com/read/454765/7383643

c uart1.c

/***************************************** NAME: uart1.c DESC: UART1 test WWW.YCTEK.COM *****************************************/ #include #include #include "2410a
www.eeworm.com/read/452695/7436403

c program11_03.c

/* Program 11.3 Pointing out the horses */ #include #include #include /* For malloc() */ int main(void) { struct horse /* Structure decla
www.eeworm.com/read/452695/7436425

c program12_04.c

/* Program 12.4 A prime example using binary files */ #include #include #include /* For square root function sqrt() */ /* Function prototypes
www.eeworm.com/read/452094/7447640

c test.c

// red-black tree #include #include #include #include ////////////////////// // supplied by user // ////////////////////// typedef int KeyType;
www.eeworm.com/read/449530/7501291

c mall.c

/* mall.c -- use the Queue interface */ /* compile with queue.c */ #include #include /* for rand() and srand() */ #include /* for time()
www.eeworm.com/read/448932/7521819

cpp 4568174_ce.cpp

//////////////////////////////////// // Problem ID:1036 User Id:Epic // Memory 32K Time:200MS //////////////////////////////////// #include #include #include us
www.eeworm.com/read/444799/7606420

c bsearch.c

/* ** Demonstrates searching an array of structures with bsearch */ #include #include typedef struct { char key[ 10 ]; /* the sort key for the array */ int other_data;
www.eeworm.com/read/444799/7606423

c qsort.c

/* ** Demonstrates sorting an array of structures with qsort */ #include #include typedef struct { char key[ 10 ]; /* the sort key for the array */ int other_data; /*