本帖最后由 SketchK 于 2015-4-25 12:22 编辑
如题,在观看iOS基础班的视频(03C语言的04章函数的07-返回值02-使用注意)中
发现如下代码- include <stdio.h>
- int test3()
- {
- printf("999999/n");
- }
- test2()
- {
- printf("88888/n");
- }
- int main()
- {
- int c = test2();
- printf("c=%d/n",c);
-
- test3();
- return=0;
- }
复制代码 我的问题是,看视频中,最后输出的结果会出现88888,这是为什么呢?
|
|