本文介绍了像'C'中的oninit()一样?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

如果程序员在调用main()例程之前如何指示C编译器执行一些

用户定义的函数? ''C''提供

灵活性,同时通过onexit退出(或)

atexit惯例。


KK

Hi All,
How can a programmer instruct ''C'' compiler to execute some
user defined function before calling main() routine? ''C'' provides
flexibility to do the same while exiting by means of "onexit" (or)
"atexit" routines.

KK

推荐答案




哦,小男孩。你想使用

函数设置函数在main()之前运行,比如on_exit()?在哪里'函数将被调用,

main()或你指定的入口点?


-

main(int c,char * k,char * s){c> 0?main(0," adceoX



Oh boy. You want to set the function run before main() using a
function, like on_exit()? Where''s the function going to be called from,
main() or the entry point you specified?

--
main(int c,char*k,char*s){c>0?main(0,"adceoX




这篇关于像'C'中的oninit()一样?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 17:29