Language/C&C++
C언어 :: signed, unsigned 그리고 underflow, overflow #7
1. signed와 unsigned 자료형에는 음수 양수를 모두 표현하는 signed와 양수만을 표현하는 unsigned로 나워진다. char signed : -128 ~ 127 unsigned : 0 ~(128 + 127) short signed : -32768 ~ 32767 unsigned : 0 ~ (32768 + 32767) int signed : -217483648 ~ 2147483647 unsigned : 0 ~ (2147483647 + 217483648) long signed : -217483648 ~ 2147483647 unsigned : 0 ~ (2147483647 + 217483648) 2. underflow와 overflow 표현 범위를 벗어나는 값을 벗어날때 underflow 또는 ..
2018. 1. 25. 23:07
최근댓글