如何说明、定义和调用函数?

2025-04-07 00:08:19
推荐回答(1个)
回答1:

申明: void function(void);
定义: void function(void)
{
.....
}
使用: return function();