I have seen a program, in the header file declared as below
typedef char CHAR10[10];
and in the program as below
CHAR10 szReading;
Is the above declaration same as
char szReading[10];
I am pretty much confused with these. Could someone explain what exactly it is?