gpt4 book ai didi

c - C 中函数的定义

转载 作者:行者123 更新时间:2023-11-30 19:50:38 26 4
gpt4 key购买 nike

我有一个作业问题,询问我函数的定义。我不太确定它希望我如何回答。问题如下:

Write the definition of a function multiplier(), which has two real parameters n and m, and which returns value of n multiplied by m

最佳答案

Write the definition of a function multiplier(), which has two real parameters n and m, and which returns value of n multiplied by m

让我们尝试解开这个问题,C 中没有 real 类型,因此 Realfloat 的代码字双函数是子例程的名称。

问题的措辞是模糊的定义,可以要求可选的原型(prototype)声明(通常存储在头文件中的函数的定义),这是

float multiplier(float,float);

或者可以同时定义和实现该函数

float multiplier(float n, float m){
return (n*m);
}

关于c - C 中函数的定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58828830/

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