Originally posted by Aru Ven:
The subject of the post is
Shift Operators & the Author is Mark Szymanowski
HTH
Aruna
Thank you aruna Actually i have seen the posting but that is in high level. I need in low level clarification. I have seen some explanation in Marcus green site? In that i didn't understand why when we are shifiting with 32 it is doing mod 32 operation and then doing shift.
eg: 10 >> 32 results 10 only.
in that site he explained that below 31 it will do normal shifting but whenever you will get more than 31 it will do mod32 operation and it will shift with the resultant.
like 10 >> 33
first mod operation carries i.e 33%32 = 1
then shift operation 10>>1 i.e 5
I need to know why this mod 32 is coming into picture.
Once again thak you aruna
bye
Ram