Shift In



In the C programming language, operations can be performed on a bit level using bitwise operators.

Shift Graph APIs Shifts Graph APIs allow you to integrate Shifts data with external workforce management systems. You'll have the flexibility to build custom Shifts experiences in the back end, while giving users a rich, front-end experience in Teams. Shift The completely reimagined way to buy or sell a used car The smart way to buy a used car.

Bitwise operations are contrasted by byte-level operations which characterize the bitwise operators' logical counterparts, the AND, OR and NOT operators. Instead of performing on individual bits, byte-level operators perform on strings of eight bits (known as bytes) at a time. The reason for this is that a byte is normally the smallest unit of addressable memory (i.e. data with a unique memory address).

This applies to bitwise operators as well, which means that even though they operate on only one bit at a time they cannot accept anything smaller than a byte as their input.

All of these operators are also available in C++, and many C-family languages.

Bitwise operators[edit]

C provides six operators for bit manipulation.[1]

SymbolOperator
&bitwise AND
|bitwise inclusive OR
^bitwise XOR (exclusive OR)
<<left shift
>>right shift
~bitwise NOT (one's complement) (unary)

Bitwise AND &[edit]

bit abit ba & b (a AND b)
000
010
100
111

The bitwise AND operator is a single ampersand: &. It is just a representation of AND which does its work on the bits of the operands rather than the truth value of the operands. Bitwise binary AND does the logical AND (as shown in the table above) of the bits in each position of a number in its binary form.

For instance, working with a byte (the char type):

The most significant bit of the first number is 1 and that of the second number is also 1 so the most significant bit of the result is 1; in the second most significant bit, the bit of second number is zero, so we have the result as 0. [2]

Bitwise OR |[edit]

bit abit ba | b (a OR b)
000
011
101
111

Similar to bitwise AND, bitwise OR only operates at the bit level. Its result is a 1 if either of the bits is 1 and zero only when both bits are 0. Its symbol is | which can be called a pipe.

Bitwise XOR ^[edit]

bit abit ba ^ b (a XOR b)
000
011
101
110

The bitwise XOR (exclusive or) performs a logical XOR function, which is equivalent to adding two bits and discarding the carry. The result is zero only when we have two zeroes or two ones.[3] XOR can be used to toggle the bits between 1 and 0. Thus i = i ^ 1 when used in a loop toggles its values between 1 and 0.[4]

Bitwise NOT ~ / ones' complement (unary)[edit]

The bitwise complement operator, the tilde, ~, flips every bit. A useful way to remember this is that the tilde is sometimes called a twiddle, and the bitwise complement twiddles every bit: if you have a 1, it's a 0, and if you have a 0, it's a 1.

This turns out to be a great way of finding the largest possible value for an unsigned number:

1unsigned intmax = ~0;

0, of course, is all 0s: 00000000 00000000. Once we twiddle 0, we get all 1s: 11111111 11111111. Since max is an unsigned int, we don't have to worry about sign bits or twos complement. We know that all 1s is the largest possible number.

Note that ~ and ! cannot be used interchangeably. When you take the logical NOT of a non-zero number, you get 0 (FALSE). However, when you twiddle a non-zero number, the only time you'll get 0 is when every bit is turned on. (This non-equivalence principle holds true for bitwise AND too, unless you know that you are using strictly the numbers 1 and 0. For bitwise OR, to be certain that it would be equivalent, you'd need to make sure that the underlying representation of 0 is all zeros to use it interchangeably. But don't do that! It'll make your code harder to understand.)

Now that we have a way of flipping bits, we can start thinking about how to turn off a single bit. We know that we want to leave other bits unaffected, but that if we have a 1 in the given position, we want it to be a 0. Take some time to think about how to do this before reading further.

We need to come up with a sequence of operations that leaves 1s and 0s in the non-target position unaffected; before, we used a bitwise OR, but we can also use a bitwise AND. 1 AND 1 is 1, and 0 AND 1 is 0. Now, to turn off a bit, we just need to AND it with 0: 1 AND 0 is 0. So if we want to indicate that car 2 is no longer in use, we want to take the bitwise AND of XXXXX1XX with 11111011.

How can we get that number? This is where the ability to take the complement of a number comes in handy: we already know how to turn a single bit on. If we turn one bit on and take the complement of the number, we get every bit on except that bit:

1~(1<<position)

Now that we have this, we can just take the bitwise AND of this with the current field of cars, and the only bit we'll change is the one of the car_num we're interested in.

1

2

3

4

voidset_unused(intcar_num)

{

in_use = in_use & ~(1<<car_num);

}

You might be thinking to yourself, but this is kind of clunky. We actually need to know whether a car is in use or not (if the bit is on or off) before we can know which function to call. While this isn't necessarily a bad thing, it means that we do need to know a little bit about what's going on. There is an easier way, but first we need the last bitwise operator: exclusive-or.

Shift operators[edit]

There are two bitwise shift operators. They are

  • Right shift (>>)
  • Left shift (<<)

Right shift >>[edit]

The symbol of right shift operator is >>. For its operation, it requires two operands. It shifts each bit in its left operand to the right.The number following the operator decides the number of places the bits are shifted (i.e. the right operand).Thus by doing ch >> 3 all the bits will be shifted to the right by three places and so on.

However, do note that a shift operand value which is either a negative number or is greater than or equal to the total number of bits in this value results in undefined behavior. For example, when shifting a 32 bit unsigned integer, a shift amount of 32 or higher would be undefined.

Example:

If the variable ch contains the bit pattern 11100101, then ch >> 1 will produce the result 01110010, and ch >> 2 will produce 00111001.

Here blank spaces are generated simultaneously on the left when the bits are shifted to the right. When performed on an unsigned type or a non-negative value in an signed type, the operation performed is a logical shift, causing the blanks to be filled by 0s (zeros). When performed on a negative value in a signed type, the result is technically implementation-defined (compiler dependent),[5] however most compilers will perform an arithmetic shift, causing the blank to be filled with the set sign bit of the left operand.

Right shift can be used to divide a bit pattern by 2 as shown:

Right shift operator usage[edit]

Typical usage of a right shift operator in C can be seen from the following code.

Shift

Example:

The output of the above program will be

Left shift <<[edit]

The symbol of left shift operator is <<. It shifts each bit in its left-hand operand to the left by the number of positions indicated by the right-hand operand. It works opposite to that of right shift operator. Thus by doing ch << 1 in the above example we have 11001010.Blank spaces generated are filled up by zeroes as above.

However, do note that a shift operand value which is either a negative number or is greater than or equal to the total number of bits in this value results in undefined behavior. This is defined in the standard at ISO 9899:2011 6.5.7 Bit-wise shift operators.For example, when shifting a 32 bit unsigned integer, a shift amount of 32 or higher would be undefined.

Left shift can be used to multiply an integer by powers of 2 as in

Example: a simple addition program[edit]

The following program adds two operands using AND, XOR and left shift (<<).

Bitwise assignment operators[edit]

C provides a compound assignment operator for each binary arithmetic and bitwise operation (i.e. each operation which accepts two operands). Each of the compound bitwise assignment operators perform the appropriate binary operation and store the result in the left operand.[6]

The bitwise assignment operators are as follows:

SymbolOperator
&=bitwise AND assignment
|=bitwise inclusive OR assignment
^=bitwise exclusive OR assignment
<<=left shift assignment
>>=right shift assignment

Logical equivalents[edit]

Four of the bitwise operators have equivalent logical operators. They are equivalent in that they have the same truth tables. However, logical operators treat each operand as having only one value, either true or false, rather than treating each bit of an operand as an independent value. Logical operators consider zero false and any nonzero value true. Another difference is that logical operators perform short-circuit evaluation.

Shift In Perspective Definition

The table below matches equivalent operators and shows a and b as operands of the operators.

BitwiseLogical
a & ba && b
a | ba || b
a ^ ba != b
~a!a

!= has the same truth table as ^ but unlike the true logical operators, by itself != is not strictly speaking a logical operator. This is because a logical operator must treat any nonzero value the same. To be used as a logical operator != requires that operands be normalized first. A logical not applied to both operands won’t change the truth table that results but will ensure all nonzero values are converted to the same value before comparison. This works because ! on a zero always results in a one and ! on any nonzero value always results in a zero.

Example:

The output of the above program will be

See also[edit]

References[edit]

  1. ^Kernighan; Dennis M. Ritchie (March 1988). The C Programming Language (2nd ed.). Englewood Cliffs, NJ: Prentice Hall. ISBN0-13-110362-8. Archived from the original on 2019-07-06. Retrieved 2019-09-07.CS1 maint: discouraged parameter (link) Regarded by many to be the authoritative reference on C.
  2. ^ ab'Tutorials - Bitwise Operators and Bit Manipulations in C and C++'. cprogramming.com.
  3. ^'Exclusive-OR Gate Tutorial'. Basic Electronics Tutorials.
  4. ^'C++ Notes: Bitwise Operators'. fredosaurus.com.
  5. ^'ISO/IEC 9899:2011 - Information technology -- Programming languages -- C'. www.iso.org.
  6. ^'C/C++ Compound assignment operators'. XL C/C++ V8.0 for AIX. IBM. Retrieved 11 November 2013.CS1 maint: discouraged parameter (link)

External links[edit]

Retrieved from 'https://en.wikipedia.org/w/index.php?title=Bitwise_operations_in_C&oldid=1007657832'

Welcome to SHIFT

Enjoy the company of other midlifers on a similar path.

The SHIFT community guides and connects midlifers seeking greater purpose and passion in life and work. Some members of our community want encore careers that combine income with personal meaning and social impact. Others want to volunteer their experience and skills as a way of giving back to the larger community. SHIFT serves as a compass to help midlifers navigate these transitions.

Support SHIFT

Become a member or make a donation.

Your support makes our work possible. Donate to SHIFT today. Your support helps members of the SHIFT community make the most of midlife transitions, supports our innovative programs and special events, and empowers SHIFT to advocate for midlife workers.

Get Involved

Shift In Vaginal Flora

Review the Opportunities.

Shift In Spanish

At SHIFT, we want to provide you with ample opportunity to enhance your existing skill sets–or develop new ones. Offering your volunteer services, as a committee member or one-off project team member, can help you do just that.

Shift In Poetry

Save