Hi
how is the typedef for monthTable working while the statement at line 6 not working?
#include <stdio.h>
typedef const char * monthTable[3];
// uncommenting the following generates compile error
//int[5] A;
int main()
{
monthTable t1,t2={"Jan","Feb","Mar"};
int i=0;
for(i=0;i<3;i++)
{
printf("%s\n",t2[i]);
}
return 1;
}