I was wondering what would be better: An enumeration declaration or a string array:
enum MonthName{January, February, March, April, May, June, ...)
or
string MonthName[12] = {"January", "February", "March", "April", "May", "June", ...)
because to me it doesn't seem like it matters.
This variable will only be accessed by one function, to display month based on the number input.