no c dont have circular shift operator part of


No C don't have circular shift operator. (Part of the reason why that is the sizes of C's types aren't precisely described----but a circular shift makes most sense when applied to a word of a particular known size.)

You can execute a circular shift using two regular shifts and a bitwise OR:

(x << 13) | (x > >3) /* circular shift left 13 in 16 bits */      

 

 

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: no c dont have circular shift operator part of
Reference No:- TGS0263378

Expected delivery within 24 Hours