c语言中的反码怎样计算

        -123.56的反码是多少?

img


#include "stdio.h"
void main()
{
    unsigned float a = -125.56;
    printf("%u",a);
}