相关疑难解决方法(0)


如何用gcc改变C程序的入口点?

如何更改用gcc编译的C程序的入口点?
就像在下面的代码中一样

#include<stdio.h>
int entry()  //entry is the entry point instead of main
 {
   return 0;
 }
Run Code Online (Sandbox Code Playgroud)

c program-entry-point entry-point

27
推荐指数
3
解决办法
3万
查看次数