赞
踩
以前在一本书上看到过一个很有趣的程序,就是:
- int main()
- {
- int i=0;
- char s[]="123";
- char* p="hello,world";
- print_hello();
- return 0;
- }
就是先声明一个整型变量i,char型数组,一个指向存储在全局静态区的char型指针,然后调用函数print_hello(),但是没有参数传递,但是print_hello()函数要打印出p指向的字符串出来,这个要求对函数的调用过程很清楚,特别stack中的变化要很清楚,对C的"caller和callee规则"也要很清楚,在实现print_hello()前先学习一些必备背景知识。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。