
C program
文章平均质量分 64
BlueSy2008
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
define and typedef
<br />#include <stdio.h><br /><br />#define dPs int*<br />typedef int* tPs;<br /><br />int main()<br />{<br /> int i=9;<br /> const tPs p1=&i;<br /> const dPs p2;<br /><br />// p1 = &i;<br /> p2 = &i;<br /><br /> print原创 2010-07-01 15:01:00 · 439 阅读 · 0 评论 -
电脑故障
<br />修电脑,不求人。(大全 不看一定会后悔。。。) <br />1:主板故障<br />2:显卡故障<br />3:声卡故障<br />4:硬盘故障<br />5:内存故障<br />6:光驱故障<br />7:鼠标故障<br />8:键盘故障<br />9:MODEM故障<br />10:打印机故障<br />11:显示器故障<br />12:刻录机故障<br />13:扫描仪故障<br />14:显示器抖动的原因<br />15:疑难BIOS设置<br />16:电脑重启故障<br />17:解转载 2010-09-19 16:25:00 · 794 阅读 · 0 评论 -
代码阅读笔记
1. 强制类型转换 不提示warning方法/* Casts 'pointer' to 'type' and issues a compiler warning if the cast changes * anything other than an outermost "const" or "volatile" qualifier. * * The cast to int is原创 2013-04-25 14:38:28 · 793 阅读 · 0 评论 -
C语言编程细节
1。C函数参数压栈顺序为从右到左,即第一个参数最靠近栈顶。2。可变参数va-list必须有至少一个参数,最左边的参数,即栈顶参数,这样可以根据第一个参数地址,从低地址起,到高地址,逐一找到其他参数。Linux 相关va_list宏定义/* * Storage alignment properties */#define _AUPBND (si原创 2014-01-08 17:26:11 · 760 阅读 · 0 评论