Leo Linuxhnrainll.blog.chinaunix.net
hnrainll
全部博文(354)
2010年(300)
2009年(54)
大鬼不动
叶绍琛
路沐堇
HoariNes
快乐的猪
6551130
zjt_pond
K__奕__
cynthia
格伯纳
Bsolar
葫芦娃的
分类: C/C++
2010-07-17 11:05:33
#include<reg52.h> char code msg[8]={0xfe,0xfd,0xfb,0xf7,0xef,0xdf,0xbf,0x7f}; void delay(int t) { for(;t!=0;t--); } void main() { unsigned char *i,p; while(1) { i = msg; for(p = 0; p < 8; p++) { delay(40000); P1 = *(i++); // P1 = *(i + p); } } }
上一篇:C语言运算符优先级 详细列表
下一篇:指针练习第一课
登录 注册