struct test { int field1; };
void sub(struct test b)
{ b.field1 = 1;}
void main()
{ struct test a={ 0 }; sub(a); }
이거 왜 답이 0이야?? 아무리 생각해도 모르겠어  ㅜ ㅠ