일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- nodeJS
- Big Data
- c++
- 딥러닝
- 김양재
- probability
- 빅데이터
- R
- Artificial Intelligence
- No SQL
- 김양재 목사
- Deep learning
- 빅 데이터
- 주일설교
- 통계
- MongoDB
- Machine Learning
- WebGL
- node.js
- 빅데이타
- data science
- Statistics
- 김양재 목사님
- 몽고디비
- 확률
- 빅 데이타
- 인공지능
- openCV
- 우리들교회
- 데이터 과학
Archives
- Today
- Total
목록CFile (1)
Scientific Computing & Data Science
[C/C++] MFC / CFile의 UTF 문자를 파일에 쓰기
MFC의 CFile 클래스를 이용하여 UTF 문자를 파일에 쓰는 방법은 다음과 같다:CString str = _T("가나다라"); CFile yourFile(_T("test.txt"), CFile::modeWrite | CFile::modeCreate); CT2CA outputString(str, CP_UTF8); yourFile.Write(outputString, ::strlen(outputString));
Programming/C&C++
2014. 9. 23. 16:49