전체 글29 strcpy_s() 0xFD 출처 : https://kldp.org/node/91438 msdn 의 strcpy_s() 설명 The debug versions of these functions first fill the buffer with 0xFD. 라고 적혀 있습니다.즉, strcpy_s() 의 일반적인 동작이 아니라 Visual Studio 군의 Debug 빌드에서만 저런 동작을 한다는 것이죠. 2017. 7. 17. GetLocaleInfo 함수 GetLocaleInfo 함수 정리 출처 : http://lab.cliel.com/entry/GetLocaleInfo-System%EC%9D%98-%EA%B5%AD%EA%B0%80%EB%B3%84%EC%A7%80%EC%97%AD-%EC%A0%95%EB%B3%B4 2017. 7. 12. 배열 초기화 방법 중 무엇이 더 효율적인가.. - 방법 1char arrA [ 50 ] = { 0, }; - 방법 2char arrB [ 50 ];memset ( arrB, 0, sizeof( arrB ) ); 위 두 방법 중 어떤것이 더 효율적일까 고민하다가 찾은 링크! 토론이 어마어마 https://kldp.org/node/31567 2017. 7. 12. memset 주의할 점 링크 : http://beautyrain.tistory.com/7 2017. 7. 11. 이전 1 2 3 4 5 6 7 8 다음