如果某个函数没有返回类型,则返回类型将默认为int。如果没有指定返回类型,则不会产生任何错误。然而,即使返回类型是int,C99版本也不允许省略返回类型。 示例#include my_function(int x) { return x * 2; } main(void) { printf("Value is: %d", my_function(10)); }登录后复制输出Value is: 20登录后复制