搜索结果
找到约 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)
技术资料 51单片机C语言程序设计Proteus仿真实训
基础程序设计 01 闪烁的LED 
/*  名称闪烁的LED 
 说明LED按设定的时间间隔闪烁 
*/ 
#include<reg51.h>&nbsp;
#define uchar unsigned char&nbsp;
#define uint unsigned int&nbsp;
sbit LED=P1^0;&nbsp;
//延时&nbsp;
void DelayMS(uint x)&nbsp;{&nbsp;
&nbsp;uchar i;&nbsp;
&nbsp;w ...
源码 RC4suanfa
RC4对文件加解密
实现RC4对任意文件的加解密,利用控制台对所有文件(中英文文本、符号甚至任意的文件)的加解密。
加解密形式如下:
&nbsp;&nbsp; RC4 -e/-d key inputfile outputfile
&nbsp; 说明:对于加密来说,输入文件名就是明文文件,对于解密来说,输入文件名就是密文文件,注意文件读取方式和控制文件 ...
源码 运动会源代码
#include&nbsp;<malloc.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#include&nbsp;<stdio.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#include&nbsp;<stdlib.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#include&nbsp;<string.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#define&nbsp;NULL&nbsp;0&nbsp;&nbsp; &nbsp;&nbsp ...
源码 学生管理啊
#include <iostream.h>
#include <string.h>
#include <iomanip.h>
#include "Stud.h"
Stud::Stud(){}
char *Stud::getno() &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//获取学号
{
return no;
}
char *Stud::getname() &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//获取姓名
{
return name;
}
char *Stud::ge ...
软件 学生成绩查询
#include "string.h"
#include "ctype.h"
#include "stdio.h"
search(char pd[])
{FILE *fp;
int time=0,i=0,j=0,add[80],k=0,m;
char *ch,
str[900];
m=strlen(pd);
if((fp=fopen("haha.txt","r"))==NULL)
{
printf("Cannot open this file\n");
exit(0);
}
for(;!feof(fp);i++)
{
str[i]=fgetc(fp);
if(to ...
源码 学生成绩管理啊
#include "string.h"
#include "ctype.h"
#include "stdio.h"
search(char pd[])
{FILE *fp;
&nbsp;int time=0,i=0,j=0,add[80],k=0,m;
&nbsp;char *ch,
&nbsp;str[900];
&nbsp;m=strlen(pd);
&nbsp;if((fp=fopen("haha.txt","r"))==NULL)
&nbsp;{
&nbsp; printf("Cannot open this file\n");
&nbsp; exit(0);
&nbsp;}
for( ...
源码 c#简单计算器
// 学生管理.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
#define MAX_LOADSTRING 100
// Global Variables:
HINSTANCE hInst; // current instance
TCHAR szTitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWindowClass[MAX_LOADSTRING]; ...
软件 简单的计算器
// 学生管理.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
#define MAX_LOADSTRING 100
// Global Variables:
HINSTANCE hInst; // current instance
TCHAR szTitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWindowClass[MAX_LOADSTRING]; ...
源码 TM1638驱动显示例程
#define TM1638_STB &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PORTC_Bit1
#define TM1638_CLK &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PORTC_Bit2
#define TM1638_DIO_IN &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DDRC_Bit3=0 ...
源码 点亮P10单元板单片机源程序
/*=================================================================
4扫16*16下入上出C语言程序, 低位起笔,数据反相。
预定义
**************************************************************/
#include
#include //可使用其中定义的宏来访问绝对地址?
bit ture=1; // 使能正反相位选择
bit false=0; / ...