In C I've got a array of structures, defined like this :
Code: Select all
struct {
char *fileName;
int fD;
} example
struct example files[]={
"1.dta",1
"2.dta",2
};Code: Select all
structure example
fileName.s
fd.l
enstructureIs there any way I can get to the two to exactly align ?

