I need to declare an array that consists of different variable types, mainly:
char *A; uint32_t B; int C;
As I understood in the tutorials, in the array you declare the type and the number of element. So to say something like:
int a[3];
where in this case, the type of the three elements are all integers. So how do I want to declare an array that consists of the three different types mentioned above?