Hi all.
I've been working on a new project.
I have multiple variables defined and in use.
The order of these variables is important.
For example, I define the following variables
long dat;
tbl[10];
After compilation, "tbl[10]" will be assigned to an address that is a multiple of 8, and there will be unnecessary data between "dat" and "tbl[10]".
How can I get rid of this phenomenon?
Thank you very much.
Suzuki