source

16진수 표현 문자열에서 토이()

manycodes 2023. 8. 9. 20:54
반응형

16진수 표현 문자열에서 토이()

다음과 같은 16진수 표현 문자열로 int를 만들어야 합니다."0xFA"또는 그 이상"FA"비슷한 것이 필요합니다.atoi("FA")그것에 대한 표준 해결책이 있습니까?

strtol()을 사용해 보십시오.

strtol("FA", NULL, 16);

언급URL : https://stackoverflow.com/questions/20654424/atoi-from-hex-representation-string

반응형