I would like to know if it is possible to give arrays in c aliases. My first try was this:
#define string char[]
But of course this does not work because array in c are defines like this:
char test[] = ""; //Correct
char[] test = ""; //Wrong
Do you know a workaround to this or is this not possible in standard c? Thanks in advance!