구조체안에 변수,구조체가 같이 들어있을때,
struct s{

int a;

int b;

struct{

int c;

int d;

}st;

int e;

};

라는 구조체가 있을때, 선언을 하게 되면 변수 a,b,c,d,e의 주소값은 동일한 간격을 가져요??