I was trying to understand how BITWISE OR works in C, and while looking on the web I found an explanation on msdn
http://msdn.microsoft.com/en-us/library/17zwb64t.aspx
But there I found this
short i = 0xAB00;
And I really don't know what this code does. I saw it for the first time and it would be really appreciated if anybody could help me explain what this does.
Thanks in Advance
Raman