搜索结果
找到约 250 项符合
CHAR 的查询结果
按分类筛选
- 全部分类
- 单片机开发 (42)
- 单片机编程 (34)
- 源码 (15)
- 数据结构 (14)
- 汇编语言 (11)
- Linux/Unix编程 (11)
- 其他 (10)
- 技术资料 (10)
- 嵌入式/单片机编程 (8)
- C/C++语言编程 (7)
- 加密解密 (7)
- Java编程 (5)
- 操作系统开发 (5)
- 编译器/解释器 (4)
- 数学计算 (3)
- VC书籍 (3)
- CA认证 (3)
- 数值算法/人工智能 (3)
- 微处理器开发 (3)
- uCOS (2)
- DSP编程 (2)
- 其他书籍 (2)
- 嵌入式Linux (2)
- 驱动编程 (2)
- 文件格式 (2)
- 其他嵌入式/单片机内容 (2)
- 软件设计/软件工程 (2)
- 嵌入式综合 (2)
- 软件 (2)
- 笔记 (2)
- 其他文档 (1)
- 传感与控制 (1)
- VxWorks (1)
- 压缩解压 (1)
- 文章/文档 (1)
- 语音压缩 (1)
- 书籍源码 (1)
- 系统设计方案 (1)
- 中间件编程 (1)
- Oracle数据库 (1)
- Internet/网络编程 (1)
- 邮电通讯系统 (1)
- 网络 (1)
- matlab例程 (1)
- 游戏 (1)
- 编辑器/阅读器 (1)
- Java书籍 (1)
- GPS编程 (1)
- 企业管理 (1)
- 3G开发 (1)
- Ajax (1)
- 电子书籍 (1)
- Delphi控件源码 (1)
- *行业应用 (1)
- 技术书籍 (1)
- Linux/uClinux/Unix编程 (1)
- PCB图/BOM单/原理图 (1)
- 应用设计 (1)
- 书籍 (1)
- VIP专区 (1)
网络 三星照相模块驱动。linux/char下
三星照相模块驱动。linux/char下,linux 2.6与linux 2.4下都使用
matlab例程 The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical)
The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa.
For example,
>> project.name = MyProject
>> project.id = 1234
>> project.param.a = 3.1415
>> project.param.b = 42
becomes with str=xml_forma ...
其他 Status StrAssign(SString T,char *chars) { // 生成一个其值等于chars的串T int i if(strlen(chars)>MAXST
Status StrAssign(SString T,char *chars)
{ // 生成一个其值等于chars的串T
int i
if(strlen(chars)>MAXSTRLEN)
return ERROR
else
{
T[0]=strlen(chars)
for(i=1 i<=T[0] i++)
T[i]=*(chars+i-1)
return OK
}
}
单片机开发 #include "at89x51.h" unsigned char code ddisp[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f}
#include "at89x51.h"
unsigned char code ddisp[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f} //段显0123456789,P0口
Linux/Unix编程 linux char device driver programming
linux char device driver programming
单片机开发 #include <reg51.h> void delay_ms(unsigned short ms) { unsigned short i unsigned char j
#include <reg51.h>
void delay_ms(unsigned short ms)
{
unsigned short i
unsigned char j
for(i=0 i<ms i++)
{
for(j=0 j<200 j++)
for(j=0 j<102 j++)
}
}
数据结构 快速排序(qsort)在程序开发中的七种用法(VC)。其中列举了对int和char型数组排序、结构和类的一级二级排序等
快速排序(qsort)在程序开发中的七种用法(VC)。其中列举了对int和char型数组排序、结构和类的一级二级排序等,具体的cmp函数。
数据结构 编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *
编程题(15_01.c)
结构
struct student
{
long num
char name[20]
int score
struct student *next
}
链表练习:
(1).编写函数struct student * creat(int n),创建一个按学号升序排列的新链表,每个链表中的结点中
的学号、成绩由键盘输入,一共n个节点。
(2).编写函数void print(struct student *head),输出 ...
单片机开发 char find in a book where you can find
char find in a book where you can find
单片机开发 12864液晶原程序.#include <reg52.h> #include <intrins.h> typedef unsigned char BYTE typede
12864液晶原程序.#include <reg52.h>
#include <intrins.h>
typedef unsigned char BYTE
typedef bit BOOL
sbit rs=P2^0
sbit rw=P2^1
sbit e =P2^2
BYTE code dis[]={"www.zansi.com"}
delay(BYTE ms)
{