I had a doubt in one of the usages of typedef. I want to know the meaning of this line:
typedef char Text[80];
What is the meaning of this line and what does it do?
Does it create an array of typedefs relating to char, or does it mean "Text means a string of size 80".
Thank you in advance! :D