Two 'main' functions in C/C++

后端 未结 16 1429
一整个雨季
一整个雨季 2020-12-01 16:08

Can I write a program in C or in C++ with two main functions?

16条回答
  •  失恋的感觉
    2020-12-01 16:32

    No. All programs have a single main(), that's how the compiler and linker generate an executable that start somewhere sensible.

    You basically have two options:

    1. Have the main() interpret some command line arguments to decide what actual main to call. The drawback is that you are going to have an executable with both programs.

    2. Create a library out of the shared code and compile each main file against that library. You'll end up with two executables.

提交回复
热议问题