블로그는 나의 힘!
[ Programing ]/API2013. 5. 21. 23:53

배열의 수를 리턴해주는 함수가 있었네요..

char szTemp[40];
_countof(szTemp) => 40

int iTemp[40];
_countof(iTemp) => 40

 


참고로 이럴때 유용하게 사용할수 있습니다

TCHAR szTemp[4];
memset(szTemp, 0, sizeof(szTemp));
_tcsncpy_s(szTemp, _countof(szTemp), _T("asda"), _TRUNCATE);
_sntprintf_s(szTemp, _countof(szTemp), _TRUNCATE, _T("%s"), _T("abcde"));

 

 

 

 

 

'[ Programing ] > API' 카테고리의 다른 글

OutputDebugString() 출력 안될때[디버그]  (0) 2013.05.22
가상 피아노 프로그램  (0) 2013.05.22
CPU 갯수 알아보기  (0) 2011.05.27
멀티 모니터 해상도 구하기  (0) 2011.05.27
GetLastError() 함수  (0) 2011.05.27
Posted by Mister_Q