最新的网络安全咨询!

〓.::展翅高飞::.〓

Archives Posts

感染c源程序的病毒

3月 29th, 2008 by XSign

#include <stdio.h>
#include
<string.h>
#include
<dir.h>
#include
<io.h>
Read the rest of this entry »

Archives Posts

typedef struct与struct的区别

3月 15th, 2008 by XSign

1. 基本解释

  typedef为C语言的关键字,作用是为一种数据类型定义一个新名字。这里的数据类型包括内部数据类型(int,char等)和自定义的数据类型(struct等)。

  在编程中使用typedef目的一般有两个,一个是给变量一个易记且意义明确的新名字,另一个是简化一些比较复杂的类型声明。
Read the rest of this entry »

Archives Posts

指针数组的运用

3月 13th, 2008 by XSign

如果过有如下定义:

char *s[2];
Read the rest of this entry »