Ok I botched this one. I didn't look at the variable declarations... I assumed you were comparing strings, which is inaccurate from what I can see now. My apologies.
If we revert the code to your original post, you declared variables for each month (using the names of the months as the variable names), but you never gave the variables an initial value. I assume January is supposed to be 1, so continue assigning values for the rest of the variables:
int choice, // Package choice
January = 1, February = 2, March = 3, April = 4, May = 5, June = 6, July = 7, August = 8, September = 9, October = 10, November = 11, December = 12;
The parts I said about the "ifs" and the equality operator remain, though. Ignore strcmp()--it is irrelevant to this situation. The modified code using the integer comparisons for the months would be as below.
Again, my apologies for jumping the gun and leading you down the wrong road :)