03 2012 档案

摘要:摘自http://www.slyar.com/blog/c-operator-priority.html恩,问这个问题的人太多了,懒得继续回答,直接贴上来自己看。。。优先级运算符名称或含义使用形式结合方向说明1[... 阅读全文
posted @ 2012-03-30 22:04 wdliming 阅读(188) 评论(0) 推荐(0) 编辑
摘要:在网上看到了这篇文章,很不错就转载了,摘自:http://www.cnblogs.com/hustcat/archive/2009/06/02/1494311.html与在前面:++(--)有太多让人困惑的地方,... 阅读全文
posted @ 2012-03-30 21:48 wdliming 阅读(246) 评论(0) 推荐(0) 编辑
摘要:首先测试源代码如下:#include int main(void){ char a[] = "abcd"; char (*p3)[5] = &a; char (*p4)[6] = (char *)a;/* p... 阅读全文
posted @ 2012-03-29 18:59 wdliming 阅读(222) 评论(0) 推荐(0) 编辑
摘要:摘自:http://luluww.bokee.com/3010083.html2004年7月31日星期六 第二次更新,增加了对象的堆内存分配,细化了指针数组和数组指针内存的说明 ! 昨天给0405班辅导,当他们问... 阅读全文
posted @ 2012-03-29 17:35 wdliming 阅读(148) 评论(0) 推荐(0) 编辑
摘要:在看《C程序设计语言》第五章中,有一节指针数组,看了还是很迷糊的,于是在电脑上写了一些代码,得到了一些体验,便记录下来,倘若有说的不对的地方,请多多指教。我的C测试代码如下:#include int main(v... 阅读全文
posted @ 2012-03-28 21:48 wdliming 阅读(351) 评论(0) 推荐(0) 编辑
摘要:摘自:http://cookiebear.info/archives/351最近突然有必要测试C语言中各个函数的运行时间,于是就搜索了一下,发现有4种方法可以达成测算程序运行时间的目的。它们分别是使用clock,... 阅读全文
posted @ 2012-03-20 11:01 wdliming 阅读(536) 评论(0) 推荐(0) 编辑
摘要:摘自:http://tigcc.ticalc.org/doc/faq.html#99Q: I have a variable and a pointer to it, for example,i... 阅读全文
posted @ 2012-03-19 15:43 wdliming 阅读(202) 评论(0) 推荐(0) 编辑
摘要:摘自:http://my.oschina.net/alphajay/blog/3870用C语言写程序时需要知道是大端模式还是小端模式。 所谓的大端模式,是指数据的低位保存在内存的高地址中,而数据... 阅读全文
posted @ 2012-03-18 13:16 wdliming 阅读(179) 评论(0) 推荐(0) 编辑
摘要:摘自:http://blog.csdn.net/xuxinshao/article/details/2244277一、什么是对齐,以及为什么要对齐:1. 现代计算机中内存空间都是按照byte划分的,从理论上讲似乎... 阅读全文
posted @ 2012-03-18 13:13 wdliming 阅读(113) 评论(0) 推荐(0) 编辑
摘要:C语言中,sizeof的Semantics(语义)如下:The sizeof operator yields the size (in bytes) of its operand, which may be an... 阅读全文
posted @ 2012-03-18 13:11 wdliming 阅读(242) 评论(0) 推荐(0) 编辑
摘要:在C++当中我们可以不创建一个类的实例,便可以访问类的成员函数,且看下面的C++例子:#include class A{public: void PrintMe();};void A::PrintMe(){... 阅读全文
posted @ 2012-03-18 10:41 wdliming 阅读(405) 评论(0) 推荐(0) 编辑
摘要:在《Applied C:An Interoduction and more》当中讲了讲位域的知识,于是我也想学学,碰巧看到一道C语言的题目,如下:#include struct mybitfields{ unsi... 阅读全文
posted @ 2012-03-16 20:07 wdliming 阅读(123) 评论(0) 推荐(0) 编辑
摘要:摘自:http://kooyee.iteye.com/blog/349491 int数据类型的位数为16位,short int数据类型的位数也是16位。而long int的位数为32位,可用来存储比较大的整数... 阅读全文
posted @ 2012-03-15 17:24 wdliming 阅读(558) 评论(0) 推荐(0) 编辑
摘要:摘自http://www.iteye.com/topic/790388#includeint strcmp(const char *str1,const char *str2){ /* 注释以下的五行(while... 阅读全文
posted @ 2012-03-15 17:16 wdliming 阅读(165) 评论(0) 推荐(0) 编辑
摘要:摘自: http://blog.csdn.net/gmstart/article/details/6600043warning: dereferencing type-punned pointer will br... 阅读全文
posted @ 2012-03-15 17:06 wdliming 阅读(134) 评论(0) 推荐(0) 编辑
摘要:在gdb当中,display的功能很不错的下面是gdb手册上的定义:display expr Add the expression expr to the list of expressions to displ... 阅读全文
posted @ 2012-03-15 12:21 wdliming 阅读(491) 评论(0) 推荐(0) 编辑
摘要:http://sangmin214.iteye.com/blog/911134 转自:http://blog.sina.com.cn/s/blog_6fc583e70100n6rm.html##########... 阅读全文
posted @ 2012-03-13 17:45 wdliming 阅读(148) 评论(0) 推荐(0) 编辑
摘要:http://www.cppblog.com/fenglinuestc/articles/47479.html也就是三种指令集:ARMv4 -> 它只支持 32 位 ARMv4 指令 ARMv4T ->“T”代... 阅读全文
posted @ 2012-03-13 14:29 wdliming 阅读(193) 评论(0) 推荐(0) 编辑
摘要:Astyle及linux shell rm命令的使用技巧最近编写代码,总离不开要编辑代码的,找了astyle,用着还行,可是我想能不能在一个文件下一次性的astyle的,网上找了很多,这里记录一下:G:\Pro... 阅读全文
posted @ 2012-03-12 12:34 wdliming 阅读(229) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/ai616818/archive/2011/06/30/2094909.html CFLAGSRPM_OPT_FLAGSmake %{?_smp_mflags} C... 阅读全文
posted @ 2012-03-11 17:37 wdliming 阅读(214) 评论(0) 推荐(0) 编辑
摘要:http://blog.163.com/huangbao_007/blog/static/356365352008102301434362/ PATH and LDFLAGS and CFLAGS 2008-... 阅读全文
posted @ 2012-03-11 11:43 wdliming 阅读(108) 评论(0) 推荐(0) 编辑
摘要:摘自:http://hi.baidu.com/woaimuxiaoyizhong/blog/item/6459842a34762a345343c125.html1.标题:Graphics Fills问题:使用工具... 阅读全文
posted @ 2012-03-04 09:48 wdliming 阅读(1005) 评论(0) 推荐(0) 编辑