张韩+ 原创作品转载请注明出处 + 《Linux内核分析》MOOC课程http://mooc.study.163.com/course/USTC-1000029000
系统:32位Ubuntu14.04
编写C程序:(保存至main.c)
int
g(
int
x)
{
return
x + 3;
}
int
f(
int
x)
{
return
g(x);
}
int
main(
void
)
{
return
f(8) + 1;
}
原文地址:http://blog.csdn.net/u013647453/article/details/44131531