728x90
[코드]
char code1[4] = {0xa0, 0xa1, 0xa2 ,0xa3};
char code2[1] = {-100};
[에러]
error: narrowing conversion of ‘162’ from ‘int’ to ‘char’ inside { } [-Wnarrowing]
[해결방법]
unsigned char code[4]= {0xa0, 0xa1, 0xa2 ,0xa3};
signed char code2[1] = {-100};
728x90
'프로그래밍 > C빌드 에러' 카테고리의 다른 글
[C++][GDB] std::string 에 계속 append() 데이터를 넣을 경우 signal SIGABRT, Aborted. (0) | 2022.05.11 |
---|---|
[Ubuntu][GDB] Cannot access memory at address 발생하지 않는 방법 (0) | 2022.05.11 |
aws sdk cpp cmake error (0) | 2018.09.28 |
LINUX 빌드 후 mysql_query() 함수 Segmentation fault (0) | 2013.05.10 |
ld: 0711-317 ERROR: Undefined symbol: .floor (0) | 2013.05.09 |
댓글