gpt4 book ai didi

c - 为什么在其函数定义之外声明的函数变量不会引发错误?

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

<分区>

为什么这个带有整数声明的代码在中间的地方(函数定义之间)没有抛出错误?

1) 为什么语法正确。
2)这样做有什么用?


#include <stdio.h>  
void func(int, int);
int main()
{
int a, b;
a = 10;
b = 20;
func(a, b);

return 0;
}
void func(i, j)
int i,j; //why does this doesn't throw error.
{
printf("a = i = %d\nb = j = %d\n", i, j);
}

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