您的位置:首页 > 其它

一次局域网入侵全过程

2009-09-25 16:15 204 查看
Since I have spent a long time with Java, I tend to think in Java way even when I am playing with C/C++.

 

GCC allows function declarations without an implementation.

 

#include <stdio.h>
int def(int);
int abc(int one) {
return one+1;
}
int main(void) {
printf("The number is %d\n", abc(0));
}

 

Compile and run it:

 

jing@jingguolin:~/test$ gcc foo.c

jing@jingguolin:~/test$ ./a.out

The number is 1
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: