Why can't a function go after Main

前端 未结 8 1894
一向
一向 2020-12-09 12:37

Why can\'t I put a function after main, visual studio cannot build the program. Is this a C++ quirk or a Visual Studio quirk?

eg.

int main()
{
   myF         


        
8条回答
  •  庸人自扰
    2020-12-09 12:50

    Functions need to be declared before they can be used:

    void myFunction();
    
    int main() {
      myFunction();
    }
    
    void myFunction() {
      ...
    }
    

提交回复
热议问题