其他分享
首页 > 其他分享> > 如何在C中的另一个函数内部调用一个函数?

如何在C中的另一个函数内部调用一个函数?

作者:互联网

如何在C中的另一个函数内部调用一个函数?

解决方法:

I don’t think this is possible.

我不同意:

void bar()
{
}

void foo()
{
    bar();   // there, I use bar inside foo
}

如果要使用尚未定义的函数,则必须先声明它,然后才能使用它:

void baz();   // function declaration

void foo()
{
    baz();
}

void baz()    // function definition
{
}

标签:c,function,forward-declaration
来源: https://codeday.me/bug/20191013/1905663.html