상수질문
후력
2023.04.01
#include stdio.h
int main(void)
{
printf(sizeof byte : %d \n,sizeof(600000000));
}
이렇게하면 상수 60 억은 8바이트가 되야지않나요 ? ㅠㅠ
21억 까지면 int 를 쓰고 40억이면 unsigned int 를 쓰고 그다음은 long 인데
왜 결과가 4가 나오는거죠 ? long 은 8바이트인데 ..