10.07.2011, 22:25
Thank you !
if I look in the table in Binary operators I can see -
& bitwise and, that mean can I use it only with binary number, and not with regular number, and with && I can't use in binary number but with regualr number?
I mean I can't do -
if(2 == X & 3 == Y)
?
Another question -
I seen in function this -
What is the & symbol here ?
Thanks
if I look in the table in Binary operators I can see -
& bitwise and, that mean can I use it only with binary number, and not with regular number, and with && I can't use in binary number but with regualr number?
I mean I can't do -
PHP код:
if(0001 == X && 0010 == Y)
PHP код:
And I can't do -
?
Another question -
I seen in function this -
PHP код:
stock GetDateOffeset(&year,&month,&day,offset)
Thanks
