C 프로그램은 동일한 고정 길이 데이터 유형을 사용함에도 불구하고 여러 기계에서 다른 결과를 산출합니다. int타입으로 실험할 때 만든 간단한 프로그램.h: #include #include #include bool get_bit(uint32_t x, uint8_t n) { x >>= n; return x & 1; } int main() { uint32_t x; uint8_t n; printf ("Enter x: "); scanf("%"SCNu32, &x); printf ("Enter n: "); scanf("%"SCNu8, &n); printf("The %"PRIu8"th bit of %"PRIu32" is: %d", n, x, get_bit(x, n)); return 0; } 내 폰(64비트 옥타코어 ..