void func(int n) { int i; int a[n]; /* 要素数がnである配列 */ for (i = 0; i < n; i++) /* 何らかの処理 */ } int main(void) { func(5); func(7); return (0); }