C++中,主函数怎么调用其他函数?

C++中,主函数怎么调用其他函数


慕侠2389804
浏览 2075回答 1
1回答

慕的地8271018

在main函数前给出声明和定义并在main函数中调用123456789void fun(){ }int main(){    fun();    return 0;}在main函数前给出声明,定义在main函数之后,在main函数中调用12345678910void fun();int main(){    fun();    return 0;}void fun(){ }
打开App,查看更多内容
随时随地看视频慕课网APP