gpt4 book ai didi

c++ - 无返回值的整数函数

转载 作者:行者123 更新时间:2023-11-30 20:08:22 25 4
gpt4 key购买 nike

我正在尝试执行下面的代码,因为该函数没有返回值,但它是用整数返回类型定义的。它如何运行而没有任何错误。

#include <stdio.h>
int fn(int a, int b){
int temp = b;
a = 2*temp;
b = a;
}
int main()
{
int x,y,printval;
scanf("%d%d",&x,&y);
printval = fn(x,y);
printf("%d", printval);
return 0;
}

我预计输出会出错,但结果是 40(input:10,20)

最佳答案

您的代码具有未定义的行为,这意味着一切皆有可能;你根本不应该依赖它。

[stmt.return]/2

(强调我的)

Flowing off the end of a constructor, a destructor, or a non-coroutine function with a cv void return type is equivalent to a return with no operand. Otherwise, flowing off the end of a function other than main or a coroutine ([dcl.fct.def.coroutine]) results in undefined behavior.

关于c++ - 无返回值的整数函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57110552/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com