02.02.2015, 12:06
Hello , i was taking a look at operators at wiki but i don't understand on the following code . Please explain this to me.
PHP Code:
stock BigEndian:operator=(b)
{
return BigEndian:(((b >>> 24) & 0x000000FF) | ((b >>> 8) & 0x0000FF00) | ((b << 8) & 0x00FF0000) | ((b << 24) & 0xFF000000));// Specially this line.
}
main()
{
new
BigEndian:a = 7;
printf("%d", _:a);
}