C - logical vs arithmetic right shift

Started by
6 comments, last by doynax 18 years, 6 months ago
I have an assignment to do a logical shift n spots to the right. On my WinXP machine using Dev-C++ >> is a logical shift. On my school's Linux machine, or maybe there is a flag in the compiler?, it does an arithmetic shift. C is not taught in this class, just general programming. I have search dozens of C websites and they all just tell me that >> does a right shift. How do I tell C I want a logical shift or an arithmetic shift? Thanks.
Advertisement
>>>
In general C compilers perform logical right shifts on unsigned data types and arithmetic right shifts (those that maintain the sign) on signed data types.
However it's something of a trick question since the compiler isn't required to support arithmetic ones at all and may choose to use logical ones exclusively.

It's also interesting to know that a division by two is not necessarily (and almost always in practice) equivalent to a two's complement arithmetic right shift. The division rounds towards zero (although it doesn't have to) while the shift does not.
signed a = -10;unsigned b = a;a >>= 1; // aritmetic (probably)b >>= 1; // logical

Quote:Original post by Tinyn
>>>

That's actually a Java operator.


BTW does anyone know what the standard says about one's completement machines and arithmetic right shifts? You'd think that the natural implementation, unlike the two's complement version, would round towards zero instead.
Huh, I coulda sworn it was in C++ too.
Quote:Original post by Tinyn
Huh, I coulda sworn it was in C++ too.


Nope. MSDN Operator List
You could also use some inline asm. iirc, shl sal shr sar
"I thought what I'd do was, I'd pretend I was one of those deaf-mutes." - the Laughing Man
Do any modern CPUs actually use one's complement?
Quote:Original post by ZQJ
Do any modern CPUs actually use one's complement?
None that I know of (aside IEEE floats which kind of uses it internally). They do introduce some interesting exceptions in the language however. So they're great when you want to say 'well.. that's technically incorrect' =)

I wouldn't be surprised if a few old beasts were still up and running (even actively developed for) though..

This topic is closed to new replies.

Advertisement