C编程中的返回类型

C编程中的返回类型

本文介绍了C编程中的返回类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

已经很久了,我还没有完全理解C中的返回类型和参数。

int main()

void main()

void main(void).... etc



这些声明实际意味着什么?我读到编译器将1或0返回给操作系统。

编译器与操作系统有什么关系?

为什么我们将参数传递给a功能毕竟?我们不能在函数内声明我们需要的东西吗?

一个清晰简洁的答案最受欢迎....

It''s been ages and I''m yet to understand return types and parameters completely in C.
int main()
void main()
void main(void) ....etc

What do these declarations actually mean? I read that that the compiler returns 1 or 0 to the operating system.
What does the compiler have to do with the operating system?
Why do we pass parameters to a function after all? Can''t we declare whatever we need inside that function?
A clear and concise answer is most appreciated ....

推荐答案



这篇关于C编程中的返回类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 16:50