当没有返回语句时,int类型返回语句的返回值是什么
为什么?
int func() { printf("Hello"); } int func1() { } void main() { int s,p; s=func(); p=func1(); printf("%d %d", s, p); }
c return function
c ×1
function ×1
return ×1