소문자 대문자 변환 upper
C/C++ / 2012. 9. 10. 16:06
그림 출처 : http://www.winapi.co.kr/
int i = 0;
for(i=0;newGetMac[i];i++) {
newGetMac[i] = toupper(newGetMac[i]);
}
그림 출처 : http://www.winapi.co.kr/
int i = 0;
for(i=0;newGetMac[i];i++) {
newGetMac[i] = toupper(newGetMac[i]);
}