摘要: 在C中,并没有字符串这个数据类型,而是使用字符数组来保存字符串。C字符串实际上就是一个以null('\0')字符结尾的字符数组,null字符表示字符串的结束。需要注意的是:只有以null字符结尾的字符数组才是C... 阅读全文
posted @ 2011-11-03 21:01 wdliming 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 在C中,并没有字符串这个数据类型,而是使用字符数组来保存字符串。C字符串实际上就是一个以null('\0')字符结尾的字符数组,null字符表示字符串的结束。需要注意的是:只有以null字符结尾的字符数组才是C... 阅读全文
posted @ 2011-11-03 21:01 wdliming 阅读(85) 评论(0) 推荐(0) 编辑
摘要: int main() { int ival1 = 123, ival2 = 1; char ch = 't'; scanf("%d%d", &ival1, &ival2); scanf("%c", &ch);... 阅读全文
posted @ 2011-11-03 20:59 wdliming 阅读(186) 评论(0) 推荐(0) 编辑
摘要: int main() { int ival1 = 123, ival2 = 1; char ch = 't'; scanf("%d%d", &ival1, &ival2); scanf("%c", &ch);... 阅读全文
posted @ 2011-11-03 20:59 wdliming 阅读(112) 评论(0) 推荐(0) 编辑
摘要: http://en.wikipedia.org/wiki/Endianness From Wikipedia, the free encyclopediaJump to: navigation, search"... 阅读全文
posted @ 2011-11-03 13:54 wdliming 阅读(145) 评论(0) 推荐(0) 编辑
摘要: http://en.wikipedia.org/wiki/Endianness From Wikipedia, the free encyclopediaJump to: navigation, search"... 阅读全文
posted @ 2011-11-03 13:54 wdliming 阅读(187) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/sunshine1314/article/details/2309655 Big Endian和 Little Endian一、字节序来自:http://ayazh.g... 阅读全文
posted @ 2011-11-03 13:51 wdliming 阅读(87) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/sunshine1314/article/details/2309655 Big Endian和 Little Endian一、字节序来自:http://ayazh.g... 阅读全文
posted @ 2011-11-03 13:51 wdliming 阅读(137) 评论(0) 推荐(0) 编辑
摘要: http://www.ibm.com/developerworks/aix/library/au-endianc/index.html?ca=drs- IntroductionTo understand the... 阅读全文
posted @ 2011-11-03 13:41 wdliming 阅读(107) 评论(0) 推荐(0) 编辑
摘要: http://www.ibm.com/developerworks/aix/library/au-endianc/index.html?ca=drs- IntroductionTo understand the... 阅读全文
posted @ 2011-11-03 13:41 wdliming 阅读(119) 评论(0) 推荐(0) 编辑
摘要: http://blog.21ic.com/user1/5742/archives/2009/64672.html 在各种计算机体系结构中,对于字节、字等的存储机制有所不同,因而引发了计算机通信领域中一个很重要的... 阅读全文
posted @ 2011-11-03 13:37 wdliming 阅读(208) 评论(0) 推荐(0) 编辑
摘要: http://blog.21ic.com/user1/5742/archives/2009/64672.html 在各种计算机体系结构中,对于字节、字等的存储机制有所不同,因而引发了计算机通信领域中一个很重要的... 阅读全文
posted @ 2011-11-03 13:37 wdliming 阅读(141) 评论(0) 推荐(0) 编辑
摘要: http://bbs.ednchina.com/BLOG_ARTICLE_42962.HTM 第一节 绝对地址访问C51提供了三种访问绝对地址的方法:1. 绝对宏:在程序中,用“#include”即可使用其中定义... 阅读全文
posted @ 2011-11-03 13:26 wdliming 阅读(265) 评论(0) 推荐(0) 编辑
摘要: http://bbs.ednchina.com/BLOG_ARTICLE_42962.HTM 第一节 绝对地址访问C51提供了三种访问绝对地址的方法:1. 绝对宏:在程序中,用“#include”即可使用其中定义... 阅读全文
posted @ 2011-11-03 13:26 wdliming 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 1、函数内部混合编程若想在C语言函数内部使用汇编语言,应使用以下Cx51编译器控制命令:#pragma asm;;; Assembly code#pragma endasm? 功能作用:asm和... 阅读全文
posted @ 2011-11-03 13:18 wdliming 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 1、函数内部混合编程若想在C语言函数内部使用汇编语言,应使用以下Cx51编译器控制命令:#pragma asm;;; Assembly code#pragma endasm? 功能作用:asm和... 阅读全文
posted @ 2011-11-03 13:18 wdliming 阅读(455) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示