搜索结果

找到约 104 项符合 Printf 的查询结果

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

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

单片机开发 实现了标准C语言库函数printf scanf功能

实现了标准C语言库函数printf scanf功能,只需要提供字符串输出函数和字符串输入函数即可使用。
https://www.eeworm.com/dl/648/303151.html
下载: 76
查看: 1034

嵌入式/单片机编程 嵌入式应用的简易printf实现

嵌入式应用的简易printf实现,代码空间小,仅为500字节。
https://www.eeworm.com/dl/647/319371.html
下载: 148
查看: 1047

软件设计/软件工程 printf(&quot 请输入%d个课程的代表值(<%d个字符): &quot ,(*G).vexnum,MAX_NAME) for(i=0 i<(*G).vexnum ++i)

printf(&quot 请输入%d个课程的代表值(<%d个字符):\n&quot ,(*G).vexnum,MAX_NAME) for(i=0 i<(*G).vexnum ++i) /* 构造顶点向量 */ { scanf(&quot %s&quot ,(*G).vertices[i].data) (*G).vertices[i].firstarc=NULL } printf(&quot 请输入%d个课程的学分值(<%d个字符):\n&quot ,(*G).vexnum,MAX_NAME) fo ...
https://www.eeworm.com/dl/684/333152.html
下载: 60
查看: 1222

单片机开发 STM32F103VBT6 实现 USART PRINTF

STM32F103VBT6 实现 USART PRINTF
https://www.eeworm.com/dl/648/343986.html
下载: 160
查看: 1022

其他嵌入式/单片机内容 avr下最小化的printf函数

avr下最小化的printf函数,可以输出八进制与十六进制数值。
https://www.eeworm.com/dl/687/345677.html
下载: 111
查看: 1059

嵌入式/单片机编程 一个printf的实现源代码

一个printf的实现源代码,包括对浮点数等到字符串的格式化,与平台无关,可以方便在嵌入式中使用。
https://www.eeworm.com/dl/647/351112.html
下载: 150
查看: 1061

嵌入式/单片机编程 LPC2131 ,Printf函数通过串口1向上位机软件发送数据

LPC2131 ,Printf函数通过串口1向上位机软件发送数据,以后利用该模板即可正常使用Printf。
https://www.eeworm.com/dl/647/372758.html
下载: 101
查看: 1068

操作系统开发 int main(int argc,char *argv[]) { char ch while(true) { printf("*************************

int main(int argc,char *argv[]) { char ch while(true) { printf("*************************************\n") printf(" 1.Reader Priority\n") printf(" 2.Writer Priority\n") printf(" 3.Exit to Windows\n") printf("*************************************\n") printf("Enter your choice(1,2, ...
https://www.eeworm.com/dl/531/388505.html
下载: 166
查看: 1179

数据结构 void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >=

void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >= Size || j < 0 || j >= Size ) { return } step++ board[i][j]=step if (step == Size*Size) { showboard() system("PAUSE") return } //DFS Knight(i-2,j-1) //left Knight(i-2,j+1) Knight(i+2,j-1) //right ...
https://www.eeworm.com/dl/654/393662.html
下载: 130
查看: 1054