gpt4 book ai didi

c - 可变参数函数不能正确解析参数

转载 作者:行者123 更新时间:2023-12-04 05:40:39 26 4
gpt4 key购买 nike

我正在尝试用 C 制作一个简单的加法计算器来学习如何使用不定参数。以下编译正确,但输出总是不正确,我不知道调试它。任何指针都会很棒。

#include <stdio.h>
#include <stdarg.h>

int calculateTotal(int n, ...)
{

//declartion of a datatype that would hold all arguments
va_list arguments;

//starts iteration of arguments
va_start (arguments, n);

//declarion of initialization for 'for loop'
//declation of accumulator
int i = 0;
int localTotal = 0;

for(i; i < n; i++)
{
//va_arg allows access to an individual argument
int currentArgument = va_arg(arguments, int);
localTotal += currentArgument;
}

//freeing the declaration of the datatype that holds the information
va_end(arguments);

return localTotal;
}

int main()
{
int total = calculateTotal(56,7,8);
printf("Total > %d\n",total);

return 0;
}

最佳答案

您将 56 作为第一个参数而不是 2 传递。然后该函数将 56 解释为参数的数量,并继续读取其经过初始化区域的“参数”。

当您修改调用以传递 2 时,result returned from the function is 15 .

关于c - 可变参数函数不能正确解析参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11286576/

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