유니코드1 [Programming] (윈도우 시스템 프로그래밍) 윈도우에서 유니코드 윈도우에서 유니코드 문자셋의 종류와 특성 SBCS ( Single Byte Character Set ) 1byte 로 문자를 표현. example : ASCII Code MBCS ( Multy Byte Character Set ) 한글은 2, 영어는 1 byte로 문자를 표현. WBCS ( Wide Byte Character Set ) 2byte 로 문자를 표현. example : UNICODE #include #include int main(void){ char str[]="ABC한글"; printf("%d\n%d\n", sizeof(str), strlen(str)); return 0; } 실행결과 10 9 sizeof 연산자는 NULL 문자를 포함하기 때문에 ,길이가 1 늘어납니다. 영어는 1 byt.. 2020. 8. 6. 이전 1 다음