CS107, Lecture 3 Bits and Bytes; Bitwise Operators

Similar documents
CS107, Lecture 3 Bits and Bytes; Bitwise Operators

CS107, Lecture 2 Bits and Bytes; Integer Representations

CS 107 Lecture 3: Integer Representations

Programming Language A

CS 107 Lecture 2: Bits and Bytes (continued)

Number Systems, Scalar Types, and Input and Output

THE INTEGER DATA TYPES. Laura Marik Spring 2012 C++ Course Notes (Provided by Jason Minski)

Computer Systems C S Cynthia Lee

Programming. Elementary Concepts

Carnegie Mellon. Bryant and O Hallaron, Computer Systems: A Programmer s Perspective, Third Edition

Declaration. Fundamental Data Types. Modifying the Basic Types. Basic Data Types. All variables must be declared before being used.

Arithmetic and Bitwise Operations on Binary Data

THE FUNDAMENTAL DATA TYPES

Arithmetic and Bitwise Operations on Binary Data

Computer Architecture and System Software Lecture 02: Overview of Computer Systems & Start of Chapter 2

Computer Organization & Systems Exam I Example Questions

Internal representation. Bitwise operators

The New C Standard (Excerpted material)

Fundamentals of Programming

Bits, Bytes and Integers

Internal representation. Bitwise operators

Internal representation. Bitwise operators

ECET 264 C Programming Language with Applications

COMP2611: Computer Organization. Data Representation

ECET 264 C Programming Language with Applications

Integer Representation

Number Systems. Binary Numbers. Appendix. Decimal notation represents numbers as powers of 10, for example

Bitwise Data Manipulation. Bitwise operations More on integers

Bits, Bytes and Integers Part 1

Fundamental of Programming (C)

CS61B Lecture #14: Integers

Fundamental Data Types. CSE 130: Introduction to Programming in C Stony Brook University

Chapter 4. Operations on Data

Representing and Manipulating Integers Part I

Inf2C - Computer Systems Lecture 2 Data Representation

Structured Programming. Jon Macey

Bits, Bytes, and Integers

Integers II. CSE 351 Autumn Instructor: Justin Hsia

4 Operations On Data 4.1. Foundations of Computer Science Cengage Learning

CS 33. Data Representation, Part 1. CS33 Intro to Computer Systems VII 1 Copyright 2017 Thomas W. Doeppner. All rights reserved.

CS61B Lecture #14: Integers. Last modified: Wed Sep 27 15:44: CS61B: Lecture #14 1

Basic operators, Arithmetic, Relational, Bitwise, Logical, Assignment, Conditional operators. JAVA Standard Edition

Chapter 3. Fundamental Data Types

LESSON 5 FUNDAMENTAL DATA TYPES. char short int long unsigned char unsigned short unsigned unsigned long

Lecture 5-6: Bits, Bytes, and Integers

Representing and Manipulating Integers. Jo, Heeseung

COMP Primitive and Class Types. Yi Hong May 14, 2015

Applied Computer Programming

Work relative to other classes

But first, encode deck of cards. Integer Representation. Two possible representations. Two better representations WELLESLEY CS 240 9/8/15

Integers II. CSE 351 Autumn 2018

Types, Operators and Expressions

Goals for this Week. CSC 2400: Computer Systems. Bits, Bytes and Data Types. Binary number system. Finite representations of binary integers

9/23/15. Agenda. Goals of this Lecture. For Your Amusement. Number Systems and Number Representation. The Binary Number System

CS 253. January 14, 2017

Binary Values. CSE 410 Lecture 02

Types, Operators and Expressions

JAVA OPERATORS GENERAL

4 Operations On Data 4.1. Foundations of Computer Science Cengage Learning

More Programming Constructs -- Introduction

Objects and Types. COMS W1007 Introduction to Computer Science. Christopher Conway 29 May 2003

A Java program contains at least one class definition.

Data III & Integers I

World Inside a Computer is Binary

ISA 563 : Fundamentals of Systems Programming

CS113: Lecture 3. Topics: Variables. Data types. Arithmetic and Bitwise Operators. Order of Evaluation

Computer Science 324 Computer Architecture Mount Holyoke College Fall Topic Notes: Bits and Bytes and Numbers

BITS, BYTES, AND INTEGERS

Integers II. CSE 351 Autumn Instructor: Justin Hsia

CS 261 Fall Binary Information (convert to hex) Mike Lam, Professor

CS 261 Fall Mike Lam, Professor Integer Encodings

Arithmetic Operators. Portability: Printing Numbers

A flow chart is a graphical or symbolic representation of a process.

Bits, Bytes, and Integers Part 2

The type of all data used in a C++ program must be specified

CS 31: Introduction to Computer Systems. 03: Binary Arithmetic January 29

Overview of C. Basic Data Types Constants Variables Identifiers Keywords Basic I/O

Data Representation 1

PROGRAMMAZIONE I A.A. 2017/2018

Integers. Dr. Steve Goddard Giving credit where credit is due

Representing Integers. Jin-Soo Kim Computer Systems Laboratory Sungkyunkwan University

Topic Notes: Bits and Bytes and Numbers

Chapter 4: Computer Codes. In this chapter you will learn about:

Expressions and Data Types CSC 121 Spring 2015 Howard Rosenthal

Numeric Data Types in C

CSCI 2212: Intermediate Programming / C Chapter 15

Topics of this Slideset. CS429: Computer Organization and Architecture. Encoding Integers: Unsigned. C Puzzles. Integers

CS429: Computer Organization and Architecture

2.1. Unit 2. Integer Operations (Arithmetic, Overflow, Bitwise Logic, Shifting)

Contents of Lecture 3

AGENDA Binary Operations CS 3330 Samira Khan

Operators and Expressions:

The Design of C: A Rational Reconstruction

Exercise: Using Numbers

C Programming Language (Chapter 2 of K&R) Variables and Constants

Integer Encoding and Manipulation

CSCI2467: Systems Programming Concepts

Course Schedule. CS 221 Computer Architecture. Week 3: Plan. I. Hexadecimals and Character Representations. Hexadecimal Representation

Bits, Words, and Integers

Integers. Today. Next time. ! Numeric Encodings! Programming Implications! Basic operations. ! Floats

Transcription:

CS107, Lecture 3 Bits and Bytes; Bitwise Operators reading: Bryant & O Hallaron, Ch. 2.1 This document is copyright (C) Stanford Computer Science and Nick Troccoli, licensed under Creative Commons Attribution 2.5 License. All rights reserved. Based on slides created by Marty Stepp, Cynthia Lee, Chris Gregg, and others. 1

Plan For Today Recap: Integer Representations Truncating and Expanding Bitwise Boolean Operators and Masks Demo 1: Courses Break: Announcements Demo 2: Powers of 2 Bit Shift Operators 2

Plan For Today Recap: Integer Representations Truncating and Expanding Bitwise Boolean Operators and Masks Demo 1: Courses Break: Announcements Demo 2: Powers of 2 Bit Shift Operators 3

Base 2 1 0 1 1 2 3 2 2 2 1 2 0 4

Hexadecimal 5

Number Representations Myth 6

Unsigned Integers 7

Signed Integers: Two s Complement In two s complement, we represent a positive number as itself, and its negative equivalent as the two s complement of itself. The two s complement of a number is the binary digits inverted, plus 1. This works to convert from positive to negative, and back from negative to positive! 8

Signed Integers: Two s Complement Con: more difficult to represent, and difficult to convert to/from decimal and between positive and negative. Pro: only 1 representation for 0! Pro: all bits are used to represent as many numbers as possible Pro: it turns out that the most significant bit still indicates the sign of a number. Pro: arithmetic is easy: we just add! 9

Overflow and Underflow If you exceed the maximum value of your bit representation, you wrap around or overflow back to the smallest bit representation. 0b1111 + 0b1 = 0b0000 If you go below the minimum value of your bit representation, you wrap around or underflow back to the largest bit representation. 0b0000-0b1 = 0b1111 10

Min and Max Integer Values Type Width (bytes) Width (bits ) Min in hex (name) Max in hex (name) char 1 8 80 (CHAR_MIN) 7F (CHAR_MAX) unsigned char 1 8 0 FF (UCHAR_MAX) short 2 16 8000 (SHRT_MIN) 7FFF (SHRT_MAX) unsigned short 2 16 0 FFFF (USHRT_MAX) int 4 32 80000000 (INT_MIN) 7FFFFFFF (INT_MAX) unsigned int 4 32 0 FFFFFFFF (UINT_MAX) long 8 64 unsigned long 8 64 0 8000000000000000 (LONG_MIN) 7FFFFFFFFFFFFFFF (LONG_MAX) FFFFFFFFFFFFFFFF (ULONG_MAX) 11

Aside: ASCII ASCII is an encoding from common characters (letters, symbols, etc.) to bit representations (chars). E.g. 'A is 0x41 Neat property: all uppercase letters, and all lowercase letters, are sequentially represented! E.g. 'B is 0x42 12

Unsigned Integers +4billion 0 More increasing positive numbers 111 110 111 101 111 100 111 111 100 010 100 001 100 000 000 000 000 001 Discontinuity means overflow possible here 000 010 000 011 011 101 011 110 011 111 Increasing positive numbers 13

Signed Numbers Negative numbers becoming less negative (i.e. increasing) 111 111 111 110 111 101 111 100 100 010 100 001-1 100 000 0 000 000 000 001 000 010 000 011 Discontinuity means overflow possible here +1 011 101 011 110 011 111 +2billion -2billion Increasing positive numbers 14

Casting What happens at the byte level when we cast between variable types? The bytes remain the same! This means they may be interpreted differently depending on the type. int v = -12345; unsigned int uv = v; printf("v = %d, uv = %u\n", v, uv); The bit representation for -12345 is 0b11000000111001. If we treat this binary representation as a positive number, it s huge! 15

Casting 16

Comparisons Between Different Types Be careful when comparing signed and unsigned integers. C will implicitly cast the signed argument to unsigned, and then performs the operation assuming both numbers are non-negative. Expression Type Evaluation Correct? 0 == 0U -1 < 0-1 < 0U 2147483647 > - 2147483647-1 2147483647U > - 2147483647-1 2147483647 > (int)2147483648u -1 > -2 (unsigned)-1 > -2 17

Comparisons Between Different Types Be careful when comparing signed and unsigned integers. C will implicitly cast the signed argument to unsigned, and then performs the operation assuming both numbers are non-negative. Expression Type Evaluation Correct? 0 == 0U Unsigned 1 yes -1 < 0 Signed 1 yes -1 < 0U Unsigned 0 No! 2147483647 > - 2147483647-1 Signed 1 yes 2147483647U > - 2147483647-1 Unsigned 0 No! 2147483647 > (int)2147483648u Signed 1 No! -1 > -2 Signed 1 yes (unsigned)-1 > -2 Unsigned 1 yes 18

Comparisons Between Different Types Which many of the following statements are true? (assume that variables are set to values that place them in the spots shown) s3 > u3 u2 > u4 s2 > s4 s1 > s2 u1 > u2 s1 > u3 19

Comparisons Between Different Types Which many of the following statements are true? (assume that variables are set to values that place them in the spots shown) s3 > u3 u2 > u4 s2 > s4 s1 > s2 u1 > u2 s1 > u3 20

Comparisons Between Different Types Which many of the following statements are true? (assume that variables are set to values that place them in the spots shown) s3 > u3 - true u2 > u4 - true s2 > s4 - false s1 > s2 - true u1 > u2 - true s1 > u3 - true 21

Plan For Today Recap: Integer Representations Truncating and Expanding Bitwise Boolean Operators and Masks Demo 1: Courses Break: Announcements Demo 2: Powers of 2 Bit Shift Operators 22

Expanding Bit Representations Sometimes, we want to convert between two integers of different sizes (e.g. short to int, or int to long). We might not be able to convert from a bigger data type to a smaller data type, but we do want to always be able to convert from a smaller data type to a bigger data type. For unsigned values, we can add leading zeros to the representation ( zero extension ) For signed values, we can repeat the sign of the value for new digits ( sign extension Note: when doing <, >, <=, >= comparison between different size types, it will promote to the larger type. 23

Expanding Bit Representation unsigned short s = 4; // short is a 16-bit format, so s = 0000 0000 0000 0100b unsigned int i = s; // conversion to 32-bit int, so i = 0000 0000 0000 0000 0000 0000 0000 0100b 24

Expanding Bit Representation short s = 4; // short is a 16-bit format, so s = 0000 0000 0000 0100b int i = s; // conversion to 32-bit int, so i = 0000 0000 0000 0000 0000 0000 0000 0100b or short s = -4; // short is a 16-bit format, so s = 1111 1111 1111 1100b int i = s; // conversion to 32-bit int, so i = 1111 1111 1111 1111 1111 1111 1111 1100b 25

Truncating Bit Representation If we want to reduce the bit size of a number, C truncates the representation and discards the more significant bits. int x = 53191; short sx = x; int y = sx; What happens here? Let's look at the bits in x (a 32-bit int), 53191: 0000 0000 0000 0000 1100 1111 1100 0111 When we cast x to a short, it only has 16-bits, and C truncates the number: 1100 1111 1100 0111 This is -12345! And when we cast sx back an int, we sign-extend the number. 1111 1111 1111 1111 1100 1111 1100 0111 // still -12345 26

Truncating Bit Representation If we want to reduce the bit size of a number, C truncates the representation and discards the more significant bits. int x = -3; short sx = x; int y = sx; What happens here? Let's look at the bits in x (a 32-bit int), -3: 1111 1111 1111 1111 1111 1111 1111 1101 When we cast x to a short, it only has 16-bits, and C truncates the number: 1111 1111 1111 1101 This is -3! If the number does fit, it will convert fine. y looks like this: 1111 1111 1111 1111 1111 1111 1111 1101 // still -3 27

Truncating Bit Representation If we want to reduce the bit size of a number, C truncates the representation and discards the more significant bits. unsigned int x = 128000; unsigned short sx = x; unsigned int y = sx; What happens here? Let's look at the bits in x (a 32-bit unsigned int), 128000: 0000 0000 0000 0001 1111 0100 0000 0000 When we cast x to a short, it only has 16-bits, and C truncates the number: 1111 0100 0000 0000 This is 62464! Unsigned numbers can lose info too. Here is what y looks like: 0000 0000 0000 0000 1111 0100 0000 0000 // still 62464 28

The sizeof Operator sizeof takes a variable type as a parameter and returns the number of bytes that type uses. printf("sizeof(char): %d\n", (int) sizeof(char)); printf("sizeof(short): %d\n", (int) sizeof(short)); printf("sizeof(int): %d\n", (int) sizeof(int)); printf("sizeof(unsigned int): %d\n", (int) sizeof(unsigned int)); printf("sizeof(long): %d\n", (int) sizeof(long)); printf("sizeof(long long): %d\n", (int) sizeof(long long)); printf("sizeof(size_t): %d\n", (int) sizeof(size_t)); printf("sizeof(void *): %d\n", (int) sizeof(void *)); $./sizeof sizeof(char): 1 sizeof(short): 2 sizeof(int): 4 sizeof(unsigned int): 4 sizeof(long): 8 sizeof(long long): 8 sizeof(size_t): 8 sizeof(void *): 8 Type Width in bytes Width in bits char 1 8 short 2 16 int 4 32 long 8 64 void * 8 64 29

Plan For Today Recap: Integer Representations Truncating and Expanding Bitwise Boolean Operators and Masks Demo 1: Courses Break: Announcements Demo 2: Powers of 2 Bit Shift Operators 30

Bitwise Operators You re already familiar with many operators in C: Arithmetic operators: +, -, *, /, % Comparison operators: ==,!=, <, >, <=, >= Logical Operators: &&,,! Today, we re introducing a new category of operators: bitwise operators: &,, ~, ^, <<, >> 31

And (&) AND is a binary operator. The AND of 2 bits is 1 if both bits are 1, and 0 otherwise. Note: this is different from Boolean AND (&&)! output = a & b; a b output 0 0 0 0 1 0 1 0 0 1 1 1 32

Or ( ) OR is a binary operator. The OR of 2 bits is 1 if either (or both) bits is 1. Note: this is different from Boolean OR ( )! output = a b; a b output 0 0 0 0 1 1 1 0 1 1 1 1 33

Not (~) NOT is a unary operator. The NOT of a bit is 1 if the bit is 0, or 1 otherwise. Note: this is different from Boolean NOT (!)! output = ~a; a output 0 1 1 0 34

Exclusive Or (^) Exclusive Or (XOR) is a binary operator. The XOR of 2 bits is 1 if exactly one of the bits is 1, or 0 otherwise. output = a ^ b; a b output 0 0 0 0 1 1 1 0 1 1 1 0 35

An Aside: Boolean Algebra These operators are not unique to computers; they are part of a general area called Boolean Algebra, and are called Boolean Operators. These are applicable in math, hardware, computers, and more! 36

Operators on Multiple Bits When these Boolean operators are applied to numbers (multiple bits), the operator is applied to the corresponding bits in each number. For example: AND OR XOR NOT 0110 & 1100 ---- 0100 0110 1100 ---- 1110 0110 ^ 1100 ---- 1010 ~ 1100 ---- 0011 37

Bit Vectors and Sets We can use bit vectors (ordered collections of bits) to represent finite sets, and perform functions such as union, intersection, and complement. Example: we can represent current courses taken using a char. 0 0 1 0 0 0 1 1 CS161 CS109 CS103 CS110 CS107 CS106X CS106B CS106A 38

Bit Vectors and Sets 0 0 1 0 0 0 1 1 CS161 CS109 CS103 CS110 CS107 CS106X CS106B CS106A How do we find the union of two sets of courses taken? Use OR: 00100011 01100001 -------- 01100011 39

Bit Vectors and Sets 0 0 1 0 0 0 1 1 CS161 CS109 CS103 CS110 CS107 CS106X CS106B CS106A How do we find the intersection of two sets of courses taken? Use AND: 00100011 & 01100001 -------- 00100001 40

Bit Masking We will frequently want to manipulate or isolate out specific bits in a larger collection of bits. A bitmask is a constructed bit pattern that we can use, along with bit operators, to do this. Example: how do we update our bit vector to indicate we ve taken CS107? 0 0 1 0 0 0 1 1 CS161 CS109 CS103 CS110 CS107 CS106X CS106B CS106A 00100011 00001000 -------- 00101011 41

Bit Masking enum Classes { CS106A = 0x1, /* 0000 0001 */ CS106B = 0x2, /* 0000 0010 */ CS106X = 0x4, /* 0000 0100 */ CS107 = 0x8, /* 0000 1000 */ CS110 = 0x10, /* 0001 0000 */ CS103 = 0x20, /* 0010 0000 */ CS109 = 0x40, /* 0100 0000 */ CS161 = 0x80, /* 1000 0000 */ }; char myclasses =...; myclasses = myclasses CS107; // Add CS107 42

Bit Masking enum Classes { CS106A = 0x1, /* 0000 0001 */ CS106B = 0x2, /* 0000 0010 */ CS106X = 0x4, /* 0000 0100 */ CS107 = 0x8, /* 0000 1000 */ CS110 = 0x10, /* 0001 0000 */ CS103 = 0x20, /* 0010 0000 */ CS109 = 0x40, /* 0100 0000 */ CS161 = 0x80, /* 1000 0000 */ }; char myclasses =...; myclasses = CS107; // Add CS107 43

Bit Masking Example: how do we update our bit vector to indicate we ve not taken CS103? 0 0 1 0 0 0 1 1 CS161 CS109 CS103 CS110 CS107 CS106X CS106B CS106A 00100011 & 11011111 -------- 00000011 char myclasses =...; myclasses = myclasses & ~CS103; // Remove CS103 44

Bit Masking Example: how do we update our bit vector to indicate we ve not taken CS103? 0 0 1 0 0 0 1 1 CS161 CS109 CS103 CS110 CS107 CS106X CS106B CS106A 00100011 & 11011111 -------- 00000011 char myclasses =...; myclasses &= ~CS103; // Remove CS103 45

Bit Masking Example: how do we check if we ve taken CS106B? 0 0 1 0 0 0 1 1 CS161 CS109 CS103 CS110 CS107 CS106X CS106B CS106A 00100011 & 00000010 -------- 00000010 char myclasses =...; if (myclasses & CS106B) {... // taken CS106B! 46

Bit Masking Example: how do we check if we ve not taken CS107? 0 0 1 0 0 0 1 1 CS161 CS109 CS103 CS110 CS107 CS106X CS106B CS106A char myclasses =...; if ((myclasses & CS107) ^ CS107) {... // not taken CS107! 47

Bit Masking Example: how do we check if we ve not taken CS107? 0 0 1 0 0 0 1 1 CS161 CS109 CS103 CS110 CS107 CS106X CS106B CS106A char myclasses =...; if (!(myclasses & CS107)) {... // not taken CS107! 48

Demo: Bitmasks and GDB 49

Bit Masking Bit masking is also useful for integer representations as well. For instance, we might want to check the value of the most-significant bit, or just one of the middle bytes. Example: If I have a 32-bit integer j, what operation should I perform if I want to get just the lowest byte in j? int j =...; int k = j & 0xff; // mask to get just lowest byte 50

Practice: Bit Masking Practice 1: write an expression that, given a 32-bit integer j, sets its leastsignificant byte to all 1s, but preserves all other bytes. Practice 2: write an expression that, given a 32-bit integer j, flips ( complements ) all but the least-significant byte, and preserves all other bytes. 51

Practice: Bit Masking Practice 1: write an expression that, given a 32-bit integer j, sets its leastsignificant byte to all 1s, but preserves all other bytes. j 0xff Practice 2: write an expression that, given a 32-bit integer j, flips ( complements ) all but the least-significant byte, and preserves all other bytes. j ^ ~0xff 52

Plan For Today Recap: Integer Representations Truncating and Expanding Bitwise Boolean Operators and Masks Demo 1: Courses Break: Announcements Demo 2: Powers of 2 Bit Shift Operators 53

Announcements Office Hours Updates Nick s OH location, Fri time, and future 1-time adjustments. See office hours calendar! Please send us any OAE letters or athletics conflicts as soon as possible. Thanks! Assignment 0 deadline tonight at 11:59PM PST Assignment 1 (Bit operations!) goes out tonight at Assignment 0 deadline Saturated arithmetic Game of Life Unicode and UTF-8 Lab 1 this week! 54

Demo: Powers of 2 55

Plan For Today Recap: Integer Representations Truncating and Expanding Bitwise Boolean Operators and Masks Demo 1: Courses Break: Announcements Demo 2: Powers of 2 Bit Shift Operators 56

Left Shift (<<) The LEFT SHIFT operator shifts a bit pattern a certain number of positions to the left. New lower order bits are filled in with 0s, and bits shifted off of the end are lost. x << k; // shifts x to the left by k bits 8-bit examples: 00110111 << 2 results in 11011100 01100011 << 4 results in 00110000 10010101 << 4 results in 01010000 57

Right Shift (>>) The RIGHT SHIFT operator shifts a bit pattern a certain number of positions to the right. Bits shifted off of the end are lost. x >> k; // shifts x to the right by k bits Question: how should we fill in new higher-order bits? Idea: let s follow left-shift and fill with 0s. short x = 2; // 0000 0000 0000 0010 x >> 1; // 0000 0000 0000 0001 printf("%d\n", x); // 1 58

Right Shift (>>) The RIGHT SHIFT operator shifts a bit pattern a certain number of positions to the right. Bits shifted off of the end are lost. x >> k; // shifts x to the right by k bits Question: how should we fill in new higher-order bits? Idea: let s follow left-shift and fill with 0s. short x = -2; // 1111 1111 1111 1110 x >> 1; // 0111 1111 1111 1111 printf("%d\n", x); // 32767! 59

Right Shift (>>) The RIGHT SHIFT operator shifts a bit pattern a certain number of positions to the right. Bits shifted off of the end are lost. x >> k; // shifts x to the right by k bits Question: how should we fill in new higher-order bits? Problem: always filling with zeros means we may change the sign bit. Solution: let s fill with the sign bit! 60

Right Shift (>>) The RIGHT SHIFT operator shifts a bit pattern a certain number of positions to the right. Bits shifted off of the end are lost. x >> k; // shifts x to the right by k bits Question: how should we fill in new higher-order bits? Solution: let s fill with the sign bit! short x = 2; // 0000 0000 0000 0010 x >> 1; // 0000 0000 0000 0001 printf("%d\n", x); // 1 61

Right Shift (>>) The RIGHT SHIFT operator shifts a bit pattern a certain number of positions to the right. Bits shifted off of the end are lost. x >> k; // shifts x to the right by k bits Question: how should we fill in new higher-order bits? Solution: let s fill with the sign bit! short x = -2; // 1111 1111 1111 1110 x >> 1; // 1111 1111 1111 1111 printf("%d\n", x); // -1! 62

Right Shift (>>) There are two kinds of right shifts, depending on the value and type you are shifting: Logical Right Shift: fill new high-order bits with 0s. Arithmetic Right Shift: fill new high-order bits with the most-significant bit. Unsigned numbers are right-shifted using Logical Right Shift. Signed numbers are right-shifted using Arithmetic Right Shift. This way, the sign of the number (if applicable) is preserved! 63

Shift Operation Pitfalls 1. Technically, the C standard does not precisely define whether a right shift for signed integers is logical or arithmetic. However, almost all compilers/machines use arithmetic, and you can most likely assume this. 2. Operator precedence can be tricky! For example: 1<<2 + 3<<4 means 1 << (2+3) << 4 because addition and subtraction have higher precedence than shifts! Always use parentheses to be sure: (1<<2) + (3<<4) 64

Recap Recap: Integer Representations Truncating and Expanding Bitwise Boolean Operators and Masks Demo 1: Courses Break: Announcements Demo 2: Powers of 2 Bit Shift Operators Next time: C strings 65