(필요한것만 정리했음...) 프로그래밍 언어 C 언어 C 자료형 문자형 Char: 1 Byte Ascii Code를 사용 정수형 short: 2 Byte int: 4 Byte long: 4 Byte long long: 8 Byte 실수형 float: 4 Byte double: 8 Byte long double: 8 Byte Java 자료형 논리형 boolean: 1 Byte 문자형 char: 2 Byte Unicode를 사용해 C언어보다 더 많은 문자를 사용할 수 있음 정수형 byte: 1 Byte short: 2 Byte int: 4 Byte long: 8 Byte 실수형 float: 4 Byte double: 8 Byte 연산자 논리 연산자 &&: AND ||: OR !: Not 비트 연산자 &: 비..