[C언어 소스] wctomb 함수 사용 예제 코드(와이드 문자를 멀티 바이트 문자로 변환) //C언어 표준 라이브러리 함수 사용법 가이드//int wctomb(char *s, wchar_t wc); 와이드 문자를 멀티 바이트 문자로 변환//와이드 문자를 멀티 바이트 문자로 변환 #pragma warning(disable:4996)#include #include #include int main() { char buffer [100]; int length; int i,j; wchar_t warr[10] = L"홍길동abc나비야"; setlocale(LC_ALL, "Korean");//로케일 설정 for(i=0,j=0;i