Your initializer contains 26 elements.
Adds: Using > float premios[] = ...
does not mean it's an empty array -- it means the number of elements in the array is deduced from the initializer, so it will turn out a float[26].
Your initializer contains 26 elements.
Adds: Using > float premios[] = ...
does not mean it's an empty array -- it means the number of elements in the array is deduced from the initializer, so it will turn out a float[26].