本文介绍了程序的输出?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
code> proc(fun,6,6), proc 会调用 fun / code>,其计算结果为1(因为 6 == 6 )并返回此结果( 1 )。So, if we call proc(fun, 6, 6), proc will call fun(6,6), which evaluates to 1 (since 6==6) and returns this result (1).
因此,输出将只是
1但老实说:请查看一些事情, (为什么是输出这个和那个):
But honestly: Please have a look at some things and try to figure out things yourself before just asking (why is the output this-and-that):
- :函数指针
- http://www.newty.de/fpt/index.html: Function pointers
这篇关于程序的输出?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!