搜索结果

找到约 126 项符合 printf 的查询结果

C/C++语言编程 C语言用户注册及登录

#include<stdio.h> #include<stdlib.h> #include<conio.h> #include<string.h> main(void) {   char new_name[4], name[4];     int new_sn ,sn;     printf("        【注册】\n\n");     printf("请输入用户名(四位英文字母):");     scanf("%s", ...
https://www.eeworm.com/dl/509083.html
下载: 1
查看: 196

单片机开发 avr单片机的api编程

avr单片机的api编程,包含printf函数影射和端口的直接操作。
https://www.eeworm.com/dl/648/293524.html
下载: 95
查看: 1036

单片机开发 液晶显示屏显示程序示例及汉字字模提取程序。示例程序中包含一个类似于printf的子程序可方便地显示字符串。字模提取程序会自动从单片机C程序中提取所包含的汉字的字模

液晶显示屏显示程序示例及汉字字模提取程序。示例程序中包含一个类似于printf的子程序可方便地显示字符串。字模提取程序会自动从单片机C程序中提取所包含的汉字的字模,生成示例子程序所需要的小字库。
https://www.eeworm.com/dl/648/278872.html
下载: 112
查看: 1109

中间件编程 打印日志文件

打印日志文件,带可变参数,类似与printf函数,可以把文件直接打印到文件中
https://www.eeworm.com/dl/682/224474.html
下载: 59
查看: 1037

微处理器开发 这个是我调通的在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 ...
https://www.eeworm.com/dl/655/409320.html
下载: 83
查看: 1094

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 ...
https://www.eeworm.com/dl/619/418770.html
下载: 180
查看: 1056

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 ...
https://www.eeworm.com/dl/619/418771.html
下载: 73
查看: 1064

单片机开发 实用的串口收发程序

实用的串口收发程序,实现了printf和scanf,注释详细,适用于51单片机
https://www.eeworm.com/dl/648/190920.html
下载: 116
查看: 1081

汇编语言 C语言的名里使用方法

C语言的名里使用方法,包括输入输出函数,scanf,printf,define,还有ASCII码表
https://www.eeworm.com/dl/644/300917.html
下载: 187
查看: 1061

数学计算 指定一個數字轉換回十進位,八進位,十六進位#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 ...
https://www.eeworm.com/dl/641/376206.html
下载: 155
查看: 1074