gpt4 book ai didi

c - C中printf的标准定义是什么?

转载 作者:太空狗 更新时间:2023-10-29 15:46:15 24 4
gpt4 key购买 nike

标准C库中定义的printf()函数的函数定义是什么?

我需要定义来解决以下问题:

Give the output of the following:

int main()
{
int a = 2;
int b = 5;
int c = 10;
printf("%d ",a,b,c);
return 0;
}

最佳答案

C语言标准声明printf如下:

int printf(const char *format, ...);

它返回一个整数并采用指向常量字符的指针的第一个参数和任意数量的任意类型的后续参数。

如果您碰巧传入的参数多于您传入的格式字符串所需的参数,那么多余的参数将被忽略(尽管它们仍会被评估)。来自 C89 标准 §4.9.6.1:

If there are insufficient arguments for the format, the behavior is undefined. If the format is exhausted while arguments remain, the excess arguments are evaluated (as always) but are otherwise ignored.

关于c - C中printf的标准定义是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6400637/

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