Using the bitwise shift operators : Shift operator « Operator « C Tutorial

Home
C Tutorial
1.Language
2.Data Type
3.String
4.printf scanf
5.Operator
6.Statement
7.Array
8.Function
9.Structure
10.Pointer
11.Memory
12.Preprocessor
13.File
14.Data Structure
15.Search Sort
16.Wide Character String
17.assert.h
18.ctype.h
19.math.h
20.setjmp.h
21.signal.h
22.stdio.h
23.stdlib.h
24.string.h
25.time.h
26.wctype.h
C / ANSI-C
C++
C++ Tutorial
Visual C++ .NET
C Tutorial » Operator » Shift operator 
5.8.1.Using the bitwise shift operators
#include <stdio.h>

void displayBitsunsigned value );

int main()

   unsigned number1 = 960;

   printf"\nThe result of left shifting\n" );
   displayBitsnumber1 );
   printf"8 bit positions using the " );
   printf"left shift operator << is\n" );
   displayBitsnumber1 << );

   printf"\nThe result of right shifting\n" );
   displayBitsnumber1 );
   printf"8 bit positions using the " );
   printf"right shift operator >> is\n" );
   displayBitsnumber1 >> );

   return 0;
}

void displayBitsunsigned value ) { 
   unsigned c;
   
   unsigned displayMask = << 31;

   printf"%7u = ", value );

   for c = 1; c <= 32; c++ ) { 
      putcharvalue & displayMask ? '1' '0' );
      value <<= 1;

      if c % == ) {
         putchar' ' );
      }
   }
   putchar'\n' );
}
The result of left shifting
    960 = 00000000 00000000 00000011 11000000
8 bit positions using the left shift operator << is
 245760 = 00000000 00000011 11000000 00000000

The result of right shifting
    960 = 00000000 00000000 00000011 11000000
8 bit positions using the right shift operator >> is
      3 = 00000000 00000000 00000000 00000011
5.8.Shift operator
5.8.1.Using the bitwise shift operators
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.