搜索:stdlib
找到约 44 项符合「stdlib」的查询结果
结果 44
按分类筛选
- 全部
- 源码 (8)
- 数据结构 (4)
- 技术资料 (3)
- 操作系统开发 (3)
- 其他 (3)
- 数学计算 (3)
- 单片机编程 (2)
- C/C++语言编程 (2)
- Linux/Unix编程 (2)
- 人工智能/神经网络 (2)
- 笔记 (1)
- Linux/uClinux/Unix编程 (1)
- 数值算法/人工智能 (1)
- 通讯/手机编程 (1)
- 电子书籍 (1)
- 游戏 (1)
- 网络 (1)
- 文章/文档 (1)
- Symbian (1)
- 软件设计/软件工程 (1)
- VC书籍 (1)
- 其他嵌入式/单片机内容 (1)
https://www.eeworm.com/dl/531/270279.html
操作系统开发
CreateSemaphore #include <stdlib>
CreateSemaphore #include <stdlib>
https://www.eeworm.com/dl/650/153997.html
人工智能/神经网络
感知器的VC实现#include "percept.h" #include "stdio.h" #include "stdlib.h"
感知器的VC实现#include "percept.h"
#include "stdio.h"
#include "stdlib.h"
https://www.eeworm.com/dl/652/392930.html
文章/文档
#include <stdio.h> #include <stdlib.h> #define OK 1 #define OVERFLOW -2
#include <stdio.h>
#include <stdlib.h>
#define OK 1
#define OVERFLOW -2
typedef int status
typedef struct LinkList{ //用带表头结点的有序链表表示多项式
float coef //系数
int expn //指数
struct LinkList *next //指向后继的指针
}*polynomail //结构体类型的指针 ...
https://www.eeworm.com/dl/686/452268.html
VC书籍
数学函数,所在函数库为math.h、stdlib.h、string.h、float.h
数学函数,所在函数库为math.h、stdlib.h、string.h、float.h
https://www.eeworm.com/dl/654/401327.html
数据结构
:#include <stdlib.h>#include <stdio.h>#include <time.h> void InsertSort(int a[],in
:#include <stdlib.h>#include <stdio.h>#include <time.h> void InsertSort(int a[],int *(k1),int *(k2))//0:直接插入排序{ int i,j int temp *(k1)=0 *(k2)=0 for(i=0 i<149 i++) { temp=a[i+1] *(k2)++ ...
https://www.eeworm.com/dl/534/185021.html
其他
#include <stdio.h> #include <string.h> #include <stdlib.h> #include <malloc.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <malloc.h>
#include <math.h>
#include <conio.h>
struct DuLNode{
struct DuLNode *prior
int data
struct DuLNode *next
https://www.eeworm.com/dl/534/399797.html
其他
#include<stdlib.h> #include "dos.h" #include "graphics.h" #include "math.h" #define PI 3.1
#include<stdlib.h>
#include "dos.h"
#include "graphics.h"
#include "math.h"
#define PI 3.1415926
#define NULL 0
#include<stdio.h>
#include<string.h>
https://www.eeworm.com/dl/619/386216.html
Linux/Unix编程
帧缓冲#include <stdio.h> #include <stdlib.h> #include <string.h> #include <s
帧缓冲#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <asm/page.h>
#include <linux/fb.h>
#define TRUE 1
#define FALSE 2
//a framebuffer devi ...
https://www.eeworm.com/dl/527/436772.html
通讯/手机编程
include <stdio.h> /*标准输入输出定义*/ #include <stdlib.h> /*标准函数库定义*/ #inclu
include <stdio.h> /*标准输入输出定义*/
#include <stdlib.h> /*标准函数库定义*/
#include <unistd.h> /*Unix标准函数定义*/
#include <sys/types.h> /**/
#include <sys/stat.h> /**/
#include <fcntl.h> /*文件控制定义*/
#include <termios.h> ...