搜索结果

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

技术资料 .An.introduction.to.Programming.the.Microchip.PIC.in.CCS.C

外文pic编程书籍, Contents Introduction History Why use C? PC based versus PICmicro®MCU Based Program Development Product Development Terminology Trying and Testing Code C Coding Standards Basics 1 C Fundamentals Structure of C Programs Components of a C Program #pragma main() #include printf Funct ...
https://www.eeworm.com/dl/902765.html
下载: 3
查看: 219

源码 成绩查询系统

#include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 int iNumOfStu=0; struct score   {   float math;   float english;   float computer;   }; struct student   {   int number ...
https://www.eeworm.com/dl/520134.html
查看: 84

源码 c语言算法排序

1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.) #include<stdio.h> #include<stdlib.h> void merge(int arr[],int low,int mid,int high){   ...
https://www.eeworm.com/dl/514507.html
下载: 1
查看: 43

源码 学生成绩guanli

#include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 int iNumOfStu=0; struct score   {   float math;   float english;   float computer;   }; struct student   {   int number ...
https://www.eeworm.com/dl/520138.html
查看: 85

uCOS 移植到MCS51的uCOS_II。 1。在文件OS_CORE.C中OSMapTbl和OSUnMapTbl数组用于查表

移植到MCS51的uCOS_II。 1。在文件OS_CORE.C中OSMapTbl和OSUnMapTbl数组用于查表,所以应该放在code里。 增加code关键字。UCOS_II.H和OS_CORE.C。 2。OS_CFG.H堆栈大小MaxStkSize改为900。 3。OS_CPU_C.C的InitTimer0函数增加了关于开T0中断的解释。 允许T0中断,此时EA=0(51上电缺省值),中断还不会发生,满足在OSSta ...
https://www.eeworm.com/dl/649/175964.html
下载: 127
查看: 1124

单片机开发 移植uip-1.0到Atmega32 1)把 uip-1.0 的所有文件加入到工程

移植uip-1.0到Atmega32 1)把 uip-1.0 的所有文件加入到工程,包括 uip 目录的文件(除uip-split.c)、unix 目录的文件、lib 目录的文件; 2)修改 uip/uip-neighbor.c 文件的 void uip_neighbor_add(uip_ipaddr_t ipaddr, struct uip_neighbor_addr *addr) 函数,一般注释掉 printf 语句即可,或者改为你自己的串口 ...
https://www.eeworm.com/dl/648/465944.html
下载: 26
查看: 1101

VIP专区 零基础开始“C语言和程序设计快速入门”视频课程,附课件

01 课程开场白---学什么,怎么学,C语言的重要性.mp4 02 计算机基础---程序执行原理和编译原理.mp4 03 计算机进制及计算机内存空间.mp4 04 字符在计算机中的编码原理及ACS码表的应用技巧.mp4 05 C开发环境简介及打造自己的C开发环境.mp4 06 用CodeBLOCKS创建第一个C工程及简单使用.mp4 07 两段C代码的比较-C语言规范 ...
https://www.eeworm.com/vipdownload/576.html

单片机开发 液晶 OCM/TG240128 驱动 编程语言: C 原产品硬件ATMega128/1280 ,晶振14.7456M 软件AVR ICC7.14C 破解版 由产品源码中提取,详细的

液晶 OCM/TG240128 驱动 编程语言: C 原产品硬件ATMega128/1280 ,晶振14.7456M 软件AVR ICC7.14C 破解版 由产品源码中提取,详细的字符和图行操作.实现LCD内任何位置的定位操作. void LCD_Init(void) void GMoveTo(U8 yline, U8 xcolumn) void TMoveTo(U8 y, U8 x,U8 len) void DispStartLine(U8 gt, U8 line) void ...
https://www.eeworm.com/dl/648/402815.html
下载: 37
查看: 1173

Internet/网络编程 C语言实现病毒源码 当含有病毒部分的程序被执行时

C语言实现病毒源码 当含有病毒部分的程序被执行时,首先进入病毒程序。它在磁盘上找扩展名为C的匹配文件,如果找到,查找是否有被传染过的标志“INFECTED”。如果有此标志,继续找其它的C文件,直至全部检查一遍。若没有这个标志,则 (1)在未被感染的C程序头部加入“INFECTED”已被传染标志。 (2)读取病毒文件的头文件 ...
https://www.eeworm.com/dl/620/416937.html
下载: 145
查看: 1071

源码 运动会源代码

#include <malloc.h>       #include <stdio.h>       #include <stdlib.h>       #include <string.h>       #define NULL 0    &nbsp ...
https://www.eeworm.com/dl/513814.html
下载: 2
查看: 36