반응형
Index를 unsigned 변수로 사용 시 주의할 점
예를 들어 다음과 같이 index를 unsigned 형태로 선언했을 때, for 문으로 -- 를 통해 접근하게 된다면, index가 0일 때 `i--`로 0xffffffff가 되게 되어 out of bound가 발생하게 됨
void Print_MPZ(MPZ* data) {
UINT32 i;
for (i = data->len - 1; i >= 0; i--) {
printf("%08X", data->value[i]);
}
printf("\n\n");
}
반응형
'Information* > 알면도움됨' 카테고리의 다른 글
How to break out of multiple loops in python? (0) | 2021.10.21 |
---|---|
특정 프로그램이 지원하는 파일 확장자 알아보기 in windows 10 (1) | 2021.10.12 |
CMakeLists.txt 로 Visual Studio Code Debugging 하기 (0) | 2021.08.04 |
멀티 코어와 게임 성능 간의 상관 관계 (0) | 2021.01.22 |
디버거에서 Rebase되는 문제 해결하기 (0) | 2020.09.19 |