void func(){}
 void main()
 {
  printf("%d", sizeof func());

}


 

이거 결과 값이 4가 나오던데

func()는 함수호출하는 건데 리턴값이 없는 어쨰서 사이즈가 왜 4가 나오나요?