为了账号安全,请及时绑定邮箱和手机立即绑定

没有RETURN的 int函数返回值是什么?

#include<stdio.h>
int testreturn()
{
}
int main()
{
int return1 = testreturn();
printf("test of return,%d\n",return1);

return 0;
}

在这里的结果:

test of return,0

在LINUX上的结果:

test of return,4195644

没有RETURN的 int函数返回值是什么?



正在回答

1 回答

#include<stdio.h>
int testreturn()
{
}
int main()
{
int return1 = testreturn();
printf("test of return,%d\n",return1);
return 0;
}


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

没有RETURN的 int函数返回值是什么?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信