정수형
-
자료형프로그래밍 언어/C++ 2024. 6. 21. 01:10
자료형 (정수형, 소수형)자료형1 BYTE = 8bit (256개를 표현 가능)1bit => 0 또는 1로 이루어짐구분자료형크기범위기본형void-- (빈값)- (빈값)정수형bool-1 Bytefalse(=0) / true(=1)short__int162 Byte(약) -32000 ~ +32000unsigned short unsigned __int162 Byte(약) 0 ~ +64000int__int32, long4 Byte(약) -21억 ~ +21억unsigned intunsigned __int324 Byte(약) 0 ~ +42억long long__int648 Byte( 약) -922경 ~ +922경실수형float-4 Byte(약) 3.4E +/- 38 (7자리 숫자)double-8 Byte(약) 1.7E..