Chapter 12 Variables and Operators

Similar documents
Chapter 12 Variables and Operators

Chapter 12 Variables and Operators

Chapter 12 Variables and Operators

COSC121: Computer Systems: Runtime Stack

Lecture 5: C programming

Introduction to C Part 1 HLL s and the Basic Syntax. (Ch11 & 12)

Chapter 14 Functions. Function. Example of High-Level Structure. Functions in C

A complex expression to evaluate we need to reduce it to a series of simple expressions. E.g * 7 =>2+ 35 => 37. E.g.

Unit 3. Operators. School of Science and Technology INTRODUCTION

Information Science 1

UNIT- 3 Introduction to C++

Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Review Topics. parameter passing, memory model)

Variables and literals

Lecture 3. More About C

UNIT - I. Introduction to C Programming. BY A. Vijay Bharath

Maciej Sobieraj. Lecture 1

Lexical Considerations

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

A Java program contains at least one class definition.

C OVERVIEW. C Overview. Goals speed portability allow access to features of the architecture speed

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

Chapter 2 Elementary Programming

Work relative to other classes

Programming for Engineers Introduction to C

Scope: Global and Local. Concept of Scope of Variable

The C++ Language. Arizona State University 1

C OVERVIEW BASIC C PROGRAM STRUCTURE. C Overview. Basic C Program Structure

3. Java - Language Constructs I

1 Lexical Considerations

Chapter 11 Introduction to Programming in C

Objectives. Chapter 2: Basic Elements of C++ Introduction. Objectives (cont d.) A C++ Program (cont d.) A C++ Program

Basics of Java Programming

Chapter 2: Basic Elements of C++

LESSON 1. A C program is constructed as a sequence of characters. Among the characters that can be used in a program are:

1/29/2018. Starting a Program Executes its main Function. ECE 220: Computer Systems & Programming. The Function main Divides into Two Parts

Chapter 2: Basic Elements of C++ Objectives. Objectives (cont d.) A C++ Program. Introduction

Full file at

Declaration and Memory

Operators. Lecture 3 COP 3014 Spring January 16, 2018

Full file at C How to Program, 6/e Multiple Choice Test Bank

CGS 3066: Spring 2015 JavaScript Reference

JAVA Programming Fundamentals

Data and Variables. Data Types Expressions. String Concatenation Variables Declaration Assignment Shorthand operators. Operators Precedence

Objectives. In this chapter, you will:

BASIC ELEMENTS OF A COMPUTER PROGRAM

Introduction. Following are the types of operators: Unary requires a single operand Binary requires two operands Ternary requires three operands

Information Science 1

n Address of a variable in memory n Allows us to indirectly access variables ! Array n A list of values arranged sequentially in memory

SOFTWARE DEVELOPMENT 1. Operators 2018W A. Ferscha (Institute of Pervasive Computing, JKU Linz)

C++ Programming Basics

LEXICAL 2 CONVENTIONS

Course Outline Introduction to C-Programming

Expressions and Data Types CSC 121 Spring 2015 Howard Rosenthal

Introduction to C++ with content from

BITG 1233: Introduction to C++

Chapter 11 Introduction to Programming in C

Chapter-8 DATA TYPES. Introduction. Variable:

Differentiate Between Keywords and Identifiers

Chapter 11 Introduction to Programming in C

The Arithmetic Operators. Unary Operators. Relational Operators. Examples of use of ++ and

The Arithmetic Operators

Lexical Considerations

Chapter 11 Introduction to Programming in C

CS102: Variables and Expressions

Arithmetic Expressions in C

DEPARTMENT OF MATHS, MJ COLLEGE

C Language Part 1 Digital Computer Concept and Practice Copyright 2012 by Jaejin Lee

Expressions and Data Types CSC 121 Fall 2015 Howard Rosenthal

UNIT IV 2 MARKS. ( Word to PDF Converter - Unregistered ) FUNDAMENTALS OF COMPUTING & COMPUTER PROGRAMMING

Program Fundamentals

Motivations. Chapter 2: Elementary Programming 8/24/18. Introducing Programming with an Example. Trace a Program Execution. Trace a Program Execution

Fundamental of Programming (C)

Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Pointers and Arrays

Features of C. Portable Procedural / Modular Structured Language Statically typed Middle level language

Control Structures. Chapter 13 Control Structures. Example If Statements. ! Conditional. if (condition) action;

Java Programming Fundamentals. Visit for more.

Introduction to C++ Introduction. Structure of a C++ Program. Structure of a C++ Program. C++ widely-used general-purpose programming language

GO - OPERATORS. This tutorial will explain the arithmetic, relational, logical, bitwise, assignment and other operators one by one.

Review: Exam 1. Your First C++ Program. Declaration Statements. Tells the compiler. Examples of declaration statements

Programming for Engineers Iteration

Lecture 3 Tao Wang 1

Expressions and Data Types CSC 121 Spring 2017 Howard Rosenthal

Chapter 7. Additional Control Structures

A Fast Review of C Essentials Part I

CS313D: ADVANCED PROGRAMMING LANGUAGE

C: How to Program. Week /Mar/05

Computer System and programming in C

9/5/2018. Overview. The C Programming Language. Transitioning to C from Python. Why C? Hello, world! Programming in C

C++ Programming: From Problem Analysis to Program Design, Third Edition

3. EXPRESSIONS. It is a sequence of operands and operators that reduce to a single value.

Fundamentals of Programming Session 4

c) Comments do not cause any machine language object code to be generated. d) Lengthy comments can cause poor execution-time performance.

Chapter 3: Operators, Expressions and Type Conversion

The C Programming Language. (with material from Dr. Bin Ren, William & Mary Computer Science)

These are reserved words of the C language. For example int, float, if, else, for, while etc.

Object oriented programming. Instructor: Masoud Asghari Web page: Ch: 3

CS5000: Foundations of Programming. Mingon Kang, PhD Computer Science, Kennesaw State University

Basics of Programming

Le L c e t c ur u e e 2 To T p o i p c i s c t o o b e b e co c v o e v r e ed e Variables Operators

Expression and Operator

Transcription:

Basic C Elements Chapter 12 Variables and Operators Original slides from Gregory Byrd, North Carolina State University! Variables named, typed data items! Operators predefined actions performed on data items combined with variables to form expressions, statements! Rules and usage! Implementation using LC-3 instructions Modified slides by Chris Wilcox, Colorado State University 2 Data Types Variable Names: Rules! C has three basic data types eger (at least 16 bits) double floating po (at least 32 bits) char character (at least 8 bits)! Exact size can vary, depending on processor is supposed to be natural eger size, for LC-3 that s 16 bits, LC-3 does not have double on a modern processor is usually 32 bits, double is usually 64 bits! Any combination of letters, numbers, and underscore (_)! Case matters sum is different than Sum, prf is not Prf, and while is not WHILE.! Cannot begin with a number usually variables beginning with underscore are used only in special library routines! Restricted length? compiler dependent, older implementations recognized as few as 31 characters 3 4 1

Variable Names: Customs Examples! Separate words with underscores (big_dog) or CamelCase (bigdog)! Lowercase for variables (buffer)! All caps for constants (BUFFER_LENGTH), whether via #define or const! Capitalized for structures (struct Packet) 5! Legal i wordspersecond same identifier words_per_second _green areally_longname_morethan31chars areally_longname_morethan31characters! Illegal 10sdigit reserved keyword ten'sdigit done? double 6 Literals! Integer 123 // decimal -0123 // octal (leading 0) 0x123 // hexadecimal (0x)! Floating po 6.023 // double 6.023e23 // double, 6.023 x 10 23 5E12f // float, 5.0 x 10 12! Character 'c' '\n' // newline '\xa' // character code 10 (0xA) Scope: Global and Local! Where is the variable accessible?! Global: accessed anywhere in program! Local: only accessible in a particular region! Compiler infers scope from where variable is declared in the program programmer doesn t have to explicitly state! Variable is local to the block in which it is declared block defined by open and closed braces { } can access variable declared in any containing block global variables are declared outside all blocks 7 8 2

#include <stdio.h> itsglobal = 0; Example () { itslocal = 1; /* local to */ prf("global %d Local %d\n", itsglobal, itslocal); { itslocal = 2; /* local to this block */ itsglobal = 4; /* change global variable */ prf("global %d Local %d\n", itsglobal, itslocal); } prf("global %d Local %d\n", itsglobal, itslocal); } Output Global 0 Local 1 Global 4 Local 2 Global 4 Local 1 9 Operators! Programmers manipulate variables using the operators provided by the high-level language.! Variables and operators combine to form expressions and statements.! These constructs denote the work to be done by the program.! Each operator may correspond to many machine instructions. Example: The multiply operator (*) typically requires multiple LC-3 ADD instructions. 10 Expression! Any combination of variables, constants, operators, and function calls every expression has a type, derived from the types of its components (according to C typing rules)! Examples: counter >= STOP x + sqrt(y) x & z + 3 9 - w-- % 6 Statement! Expresses a complete unit of work executed in sequential order! Simple statement ends with semicolon z = x * y; /* assign product to z */ y = y + 1; /* after multiplication */ ; /* null statement */! Compound statement groups simple statements using braces. syntactically equivalent to a simple statement { z = x * y; y = y + 1; } 11 12 3

Operators Three things to know about each operator: Assignment Operator! (1) Functionality what does the operator do?! (2) Precedence! Changes the value of a variable. x = x + 4; in which order are operators combined? 1. Evaluate right-hand side. Example: a * b + c * d is the same as (a * b) + (c * d) since multiply has higher precedence than addition! (3) Associativity 2. Set value of left-hand side variable to result. in which order are operators of the same precedence combined? Example: a - b - c is the same as (a - b) - c because add and subtract associate left-to-right 13 14 Assignment Operator Arithmetic Operators! All expressions evaluate to a value, even ones with the assignment operator.! For assignment, the result is the value assigned. usually (but not always) the value of right-hand side type conversion might make assigned value different than computed value! Assignment associates right to left. y = x = 3; y gets the value 3, because (x = 3) evaluates to the value 3. * multiply x * y 6 l-to-r / divide x / y 6 l-to-r % modulo x % y 6 l-to-r + add x + y 7 l-to-r - subtract x - y 7 l-to-r! All associate left to right.! * / % have higher precedence than + -.! Full precedence chart on page 602 of textbook 15 16 4

Arithmetic Expressions! If mixed types, smaller type is promoted to larger. x + 4.3 if x is, converted to double and result is double! Integer division fraction is dropped. x / 3 if x is and x=5, result is 1 (not 1.666666...)! Modulo result is reder. x % 3 if x is and x=5, result is 2. 17 Bitwise Operators ~ bitwise NOT ~x 4 r-to-l << left shift x << y 8 l-to-r >> right shift x >> y 8 l-to-r & bitwise AND x & y 11 l-to-r ^ bitwise XOR x ^ y 12 l-to-r bitwise OR x y 13 l-to-r! Operate on variables bit-by-bit. Like LC-3 AND and NOT instructions.! Shift operations are logical (not arithmetic). Operate on values -- neither operand is changed. 18 Logical Operators! logical NOT!x 4 r-to-l && logical AND x && y 14 l-to-r Logical OR x y 15 l-to-r! Treats entire variable (or value) as TRUE (non-zero) or FALSE (zero).! Result of a logcial operation is always either TRUE (1) or FALSE (0). Relational Operators > greater than x > y 9 l-to-r >= greater or equal x >= y 9 l-to-r < less than x < y 9 l-to-r < less or equal x <= y 9 l-to-r == equals x == y 10 l-to-r!= not equals x!= y 10 l-to-r! Result is 1 (TRUE) or 0 (FALSE).! Note: Don t confuse equality (==) with assignment (=)! 19 20 5

Special Operators: ++ and -- ++ postincrement x++ 2 r-to-l -- postdecrement x-- 2 r-to-l ++ preincrement --x 3 r-to-l -- predecrement ++x 3 r-to-l! Changes value of variable before (or after) its value is used in an expression. Pre: Increment/decrement variable before using its value. Post: Increment/decrement variable after using its value. Using ++ and -- x = 4; y = x++;! Results: x = 5, y = 4 (because x is incremented after yielding a value) x = 4; y = ++x;! Results: x = 5, y = 5 (x is incremented before yielding a value) 21 22 Practice with Precedence! Assume a=1, b=2, c=3, d=4. x = a * b + c * d / 2; /* x = 8 */! same as: x = (a * b) + ((c * d) / 2);! For long or confusing expressions, use parentheses, because reader might not have memorized precedence table.! Note: Assignment operator has lowest precedence, so operations on the right-hand side are evaluated before assignment. Special Operator: Conditional Symbol Operation! If x is TRUE (non-zero), result is y; else, result is z.! Like a MUX, with x as the select signal. y z 1 0 Usage Precedence Assoc? : conditional x?y:z 16 l-to-r x 23 24 6

! a;! b=5, c = b * ++b;! d=8, e = d++ * d++; Undefined Behavior! f=7; f = f++;! g=3; prf("%d %d\n", ++g, ++g);! alpha() { prf("alpha"); return 1; } beta() { prf("beta"); return 1; } gamma = alpha()+beta(); Experimentation proves nothing! Special Operators: +=, *=, etc.! Arithmetic and bitwise operators can be combined with assignment operator. Statement Equivalent assignment x += y; x = x + y; x -= y; x = x - y; x *= y; x = x * y; x /= y; x = x / y; x %= y; x = x % y; x &= y; x = x & y; x = y; x = x y; x ^= y; x = x ^ y; x <<= y; x = x << y; x >>= y; x = x >> y; All have same precedence and associativity as = and associate right-to-left. 25 26 Symbol Table! Like assembler, compiler needs to know information associated with identifiers in assembler, all identifiers were labels and information is address! Compiler keeps more information Name (identifier) Type Location in memory Scope Name Type Offset Scope amount hours minutes rate seconds time 0-3 -4-1 -5-2 Allocating Space for Variables! Global data section All global variables stored here R4 pos to beginning! Run-time stack Used for local variables R6 pos to top of stack R5 pos to top frame on stack New frame for each block (goes away when block exited)! Offset = distance from beginning of storage area Global: LDR R1, R4, #4 Local: LDR R2, R5, #-3 0x0000 0xFFFF instructions global data run-time stack PC R4 R6 R5 27 28 7

Local Variable Storage! Local variables are stored in an activation record, also known as a stack frame.! Symbol table offset gives the distance from the base of the frame. R5 is the frame poer holds address of the base of the current frame. A new frame is pushed on the run-time stack each time a block is entered. R5 Because stack grows downward, base is the highest address of the frame, and variable offsets are <= 0. seconds minutes hours time rate amount Variables and Memory Locations! In our examples, a variable is always stored in memory.! When assigning to a variable, must store to memory location.! A real compiler would perform code optimizations that try to keep variables allocated in registers. Why? 29 30 Example: Compiling to LC-3 #include <stdio.h> inglobal; () { inlocal; /* local to */ outlocala; outlocalb; /* initialize */ inlocal = 5; inglobal = 3; /* perform calculations */ outlocala = inlocal++ & ~inglobal; outlocalb = (inlocal + inglobal) - (inlocal - inglobal); /* pr results */ prf("the results are: outlocala = %d, outlocalb = %d\n", outlocala, outlocalb); } Example: Symbol Table Name Type Offset Scope inglobal 0 global inlocal 0 outlocala -1 outlocalb -2 31 32 8