搜索结果

找到约 416 项符合 char 的查询结果

技术资料 必须弄懂的495个c语言问题(经典资料)

必须弄懂的495个c语言问题 ,前言 1 声明和初始化 1 1.1 我如何决定使用那种整数类型? . . . . . . . . . . . . . . . . . . . 1 1.2 64 位机上的 64 位类型是什么样的? . . . . . . . . . . . . . . . . 1 1.3 怎样定义和声明全局变量和函数最好? . . . . . . . . . . . . . . . 2 1.4 extern 在函数声明中是什么意思 ...
https://www.eeworm.com/dl/851995.html
下载: 6
查看: 999

技术资料 msp430基础程序集合

LED 程序 P4OUT=BitCode; //输出位码 LED 流水灯实验 P2OUT=Code[Bit[i]]; //输出段码 #include "msp430x14 ...
https://www.eeworm.com/dl/945657.html
下载: 8
查看: 6248

电源技术 零序电流互感器介绍

保定众邦公司开发生产的零序电流互感器是用于电力电缆上的一种互感器,它的一次绕组为穿过互感器内孔的三相一次导体电缆(或是单相电缆),它的一次电流是一次三相电流的矢量和(在三相平衡时为0),当发生系统单相接地时或三相平衡时,矢量和不为0,零序电流互感器的二次有电流输出,可以供给保护装置,实现保护和监控。由 ...
https://www.eeworm.com/dl/505/24740.html
下载: 94
查看: 1186

源码 学生成绩管理啊

#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( ...
https://www.eeworm.com/dl/513824.html
查看: 44

单片机编程 AVR单片机数码管秒表显示

#include<iom16v.h> #include<macros.h> #define uint unsigned int #define uchar unsigned char uint a,b,c,d=0; void delay(c) { for for(a=0;a<c;a++) for(b=0;b<12;b++); }; uchar tab[]={ 0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,
https://www.eeworm.com/dl/502/28551.html
下载: 25
查看: 1125

uCOS 应用于ucGUI的16*16点阵字库文件 只要将该文件加入ucGUI的工程中, 再在GUI.H中如下声明: extern const GUI_FONT GUI_Font6x8 ...... exter

应用于ucGUI的16*16点阵字库文件 只要将该文件加入ucGUI的工程中, 再在GUI.H中如下声明: extern const GUI_FONT GUI_Font6x8 ...... extern const GUI_FONT GUI_Font_HZ16x16 //汉字字体 即可使用. 使用实例: static void DemoHZ(void) { const char str[] = GUI_UC_START"中国人民万岁"GUI_UC_END /* Set ShiftJIS font */ ...
https://www.eeworm.com/dl/649/132892.html
下载: 102
查看: 1265

嵌入式Linux Linux 2.4.18 s3c2440 led driver 使用dev-C++撰寫

Linux 2.4.18 s3c2440 led driver 使用dev-C++撰寫,需要linux 2.4.18 kernel include,編譯完成後產生led module。 insmod main.o //安裝模組 mknod /dev/leds c 221 0 使用方法: int main(int argc, char *argv[]) { int testdev //led test... testdev = open("/dev/QuickMarkLed",O_RDWR) ioctl(testdev, 2 ...
https://www.eeworm.com/dl/653/246851.html
下载: 93
查看: 1187

汇编语言 1、 有n个学生

1、 有n个学生,每个学生有m门成绩,每个学生的m门成绩用一单链表实现,n个学生所对应n个单链表的头指针用一指针数组统一存放。 1) 建立该存贮结构。 2) 查找第i个学生的某门课成绩。 链表中结点结构: struct node {char *nam;/*nam为课程名*/   float sco;/*sco为该门课程的成绩*/ struct node *link;/*link为指向 ...
https://www.eeworm.com/dl/644/396045.html
下载: 27
查看: 1044

Linux/Unix编程 //初始化 initscr() //获得屏幕尺寸 getmaxyx(stdscr, h, w) //画背景 for(i=0 i<h i++)

//初始化 initscr() //获得屏幕尺寸 getmaxyx(stdscr, h, w) //画背景 for(i=0 i<h i++) for(j=0 j<w j++){ mvaddch(i, j, ACS_CKBOARD) } refresh() //建立窗口 pad = newpad(80, 128) for(i=0 i<80 i++){ char line[128] sprintf(line, "This line in pad is numbered d ...
https://www.eeworm.com/dl/619/451814.html
下载: 99
查看: 1128

单片机开发 内容摘要: LHD6000主板主芯片程序 ISD1730时序说明: 参考:void Send_1Byte(uchar ucData_s)和uchar Receive_1Byte(void)的说明.

内容摘要: LHD6000主板主芯片程序 ISD1730时序说明: 参考:void Send_1Byte(uchar ucData_s)和uchar Receive_1Byte(void)的说明. 应先发"RESET"命令再发"PWR_UP"命令,后发"RESET"命令可能不正常工作. 1730最高地址只有0xFF,所以对指定地址的操作函数的参数使用了"unsigned char"类型, 17系列的其它型号可能才用得到"unsigne ...
https://www.eeworm.com/dl/648/488679.html
下载: 105
查看: 1112