数组问题……
# include <stdio.h>int main (void)
{
void f(int n);
int x=5;
f(x);
getch();
}
void f(int n)
{
int a[n];
int i;
for (i=0;i<=n;i++)
{
scanf("%d",a[i]);
printf("%d ",a[i]);
}
}
错误 sdffff~1.c 19: 需要用常量表达式在 f 函数中
错误 sdffff~1.c 19: 结构体或数组的大小未知在 f 函数中
警告 sdffff~1.c 22: 参数'n'从未使用在 f 函数中