struct test { int field1; };void sub(struct test b){ b.field1 = 1;}void main(){ struct test a={ 0 }; sub(a); }이거 왜 답이 0이야??? 1아니야?