我编写了一个将 ip 转换为十进制的代码,它似乎给出了意想不到的结果,这是因为从 BYTE 到 DWORD 的转换不匹配。
有没有办法将 byte 变量转换为 word , typecast 似乎不起作用。
这是代码的一部分
//function to convert ip 2 decimal
DWORD ip2dec(DWORD a ,DWORD b,DWORD c,DWORD d)
{
DWORD dec;
a=a*16777216;
b=b*65536;
c=c*256;
dec=a+b+c+d;
return dec;
}
int main()
{
BYTE a,b,c,d;
/* some operations to split the octets and store them in a,b,c,d */
DWORD res=ip2dec(a,b,c,d);
printf("The converted decimal value = %d",dec);
}
我得到的值为 -1062731519 而不是 3232235777 。