C return 关键字
例子
从函数返回一个值
int myFunction(int x) {
return 5 + x;
}
int main() {
printf("Result is: %d", myFunction(3));
return 0;
}
// 输出 8 (5 + 3)
亲自尝试 »
定义和用法
The return
关键字结束函数的执行,并且可以用来从函数返回一个值。
相关页面
在我们的 C 函数教程 中了解更多关于返回值的信息。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]