ccw*_*ccw 0 c linux program-entry-point
这是我在linux中的代码:
#include <stdio.h>
static int tt(void);
static int tt(void)
{
return 1;
}
int main(int charc,char **charv)
{
tt();
}
Run Code Online (Sandbox Code Playgroud)
在shell中:
$./a.out
$echo %?
$1
Run Code Online (Sandbox Code Playgroud)
为什么我得到"1"作为结果