代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/474137/6815605

c uart1.c

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

c portscan.c

/* this has been tested already, it works... * * feed the ascii ip address and port number, and return true * or false if the port is open or closed.... * */ #include #include
www.eeworm.com/read/473665/6848400

cpp graphcutconstr.cpp

#include "mex.h" #include "GCoptimization.h" #include "GraphCut.h" #include /* Defines */ /* * Matlab wrapper for Weksler graph cut implementation * * usage: * [gch] =
www.eeworm.com/read/473665/6848408

cpp graphcutconstrsparse.cpp

#include "mex.h" #include "GCoptimization.h" #include "GraphCut.h" #include /* Defines */ /* * Matlab wrapper for Weksler graph cut implementation * * usage: * [gch] =
www.eeworm.com/read/473355/6851495

c fir_mse.c

#include #include "mex.h" #include "stdio.h" #include "stdlib.h" #include "matrix.h" //--------------------------------------------------------------------------- // 定义输入参数 #define X
www.eeworm.com/read/472222/6873371

c hqueue.c

#include #include #include #include "hqueue.h" /***********************************************************/ HQUEUE * hqCreate(unsigned int unit_num,unsigned i
www.eeworm.com/read/471682/6887990

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/471682/6888013

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/394482/8222089

cpp list11-3.cpp

#include #include #include #include using namespace std; void main(void) { valarray X(10); valarray Y; numeric_
www.eeworm.com/read/193041/8256842

cpp 递归广义表(创建,打印,求深度,删除指定结点).cpp

#include #include #include using namespace std; //************************* #define HEAD 0 #define INTER 1 #define CH 2 #define LST 3 //----------------------