目前我正在研究 c 并且面临关于结构中签名 int 的困惑,这里我给出了示例:
#include <stdio.h>
#include <string.h>
struct {
signed int age : 4;
} Age;
int main( ) {
Age.age = -8;
printf("Age.age : %d\n", Age.age );
return 0;
}
在这里,我已经描述了 int 在存储值时将占用的位大小。在这里,我将值 -8 分配给年龄。所以它会为 8 存储像 1000 这样的值,对于 -8 它应该像 11000 这样存储,其中左第 1 位被称为符号位。因此,如果 int age 必须存储 -8 它必须有 5 位,但是当我编译给定的示例时,它没有给出错误并显示输出。
请帮我解决我的问题。