void test (int x) { int arr[x]; arr[0] = 1; } int main (void) { test (3); return 0; }