搜索结果
找到约 126 项符合
PRINTF 的查询结果
按分类筛选
- 全部分类
- 技术资料 (20)
- 单片机开发 (16)
- 源码 (15)
- Linux/Unix编程 (10)
- 嵌入式/单片机编程 (5)
- 微处理器开发 (5)
- VC书籍 (5)
- 其他嵌入式/单片机内容 (5)
- 数学计算 (4)
- VIP专区 (4)
- 其他 (3)
- 编译器/解释器 (3)
- 数据结构 (3)
- 中间件编程 (3)
- 单片机编程 (2)
- C/C++语言编程 (2)
- Internet/网络编程 (2)
- 磁盘编程 (2)
- uCOS (2)
- 嵌入式Linux (2)
- 软件设计/软件工程 (2)
- 软件 (1)
- Linux/uClinux/Unix编程 (1)
- 操作系统开发 (1)
- 教材/考试/认证 (1)
- *行业应用 (1)
- 文件格式 (1)
- 汇编语言 (1)
- 人工智能/神经网络 (1)
- 文章/文档 (1)
- 家庭/个人应用 (1)
- 系统设计方案 (1)
C/C++语言编程 C语言用户注册及登录
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<string.h>
main(void)
{ &nbsp; char new_name[4], name[4];
&nbsp; &nbsp; int new_sn ,sn;
&nbsp; &nbsp; printf(" &nbsp; &nbsp; &nbsp; &nbsp;【注册】\n\n");
&nbsp; &nbsp; printf("请输入用户名(四位英文字母):");
&nbsp; &nbsp; scanf("%s", ...
单片机开发 avr单片机的api编程
avr单片机的api编程,包含printf函数影射和端口的直接操作。
单片机开发 液晶显示屏显示程序示例及汉字字模提取程序。示例程序中包含一个类似于printf的子程序可方便地显示字符串。字模提取程序会自动从单片机C程序中提取所包含的汉字的字模
液晶显示屏显示程序示例及汉字字模提取程序。示例程序中包含一个类似于printf的子程序可方便地显示字符串。字模提取程序会自动从单片机C程序中提取所包含的汉字的字模,生成示例子程序所需要的小字库。
微处理器开发 这个是我调通的在2410下运行文件系统的程序. 用2410驱动sd卡来实现fat文件系统. 欢迎大家来测试. 用法很简单, 如下 FILE *fp // 文件指针
这个是我调通的在2410下运行文件系统的程序. 用2410驱动sd卡来实现fat文件系统. 欢迎大家来测试.
用法很简单, 如下
FILE *fp // 文件指针
unsigned char temp[24]="3.wav" // 文件明需要放在数组里
while(!initialize_media()) // 初始化sd卡
{
Uart_Printf("sd initializing....\n")
}
Uart ...
Linux/Unix编程 srand[getpid[]] /* initialize some of the memory */ memset[heightmap, 0, MAPSIZE*MAPSIZE]
srand[getpid[]]
/* initialize some of the memory */
memset[heightmap, 0, MAPSIZE*MAPSIZE]
memset[vpage, 0, RENDERWIDTH * RENDERHEIGHT]
printf["Creating dx d fractal terrain\n", MAPSIZE, MAPSIZE]
heightmap[0] = [rand[] 128] + 64 // initialize starting point on map
CreateFract ...
Linux/Unix编程 srand[getpid[]] /* initialize some of the memory */ memset[heightmap, 0, MAPSIZE*MAPSIZE]
srand[getpid[]]
/* initialize some of the memory */
memset[heightmap, 0, MAPSIZE*MAPSIZE]
memset[vpage, 0, RENDERWIDTH * RENDERHEIGHT]
printf["Creating dx d fractal terrain\n", MAPSIZE, MAPSIZE]
heightmap[0] = [rand[] 128] + 64 // initialize starting point on map
CreateFract ...
汇编语言 C语言的名里使用方法
C语言的名里使用方法,包括输入输出函数,scanf,printf,define,还有ASCII码表
数学计算 指定一個數字轉換回十進位,八進位,十六進位#include <stdio.h> #include <stdlib.h> int main(void) { int
指定一個數字轉換回十進位,八進位,十六進位#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int number =89
printf("數字 %d\n",number) /* %d 為十進位輸出格式*/
printf("八進位為 %o\n",number) /* %o 為八進位輸出格式*/
printf("十六進位為%x\n",number) /* %x 為十六進位輸出格式*/
system ...