can you typedef an array with constant size, I'm looking for something like:

typedef char[4] char4;

but this won't work and this too don't work:

typedef [4]char char4;

is there a way to declare a type of array of constant size, I want:

char4 a; <=> char a[4];

any help is greatly appriciated