I am trying to declare a character string which is big enough to hold 12 variables but only initialized to hold 2.

I tried doing

char months [ 12 ] [ 2 ];

but that didnt work. I could use some help, thanks in advance.