int fibonacci(int n) { int nums[n]; // ... }
A function which defines an array with variable size, dependent on the value of n.
variable-length array (plural variable-length arrays)