C: How to Program. Week /Mar/05

Similar documents
Chapter 2 - Introduction to C Programming

Introduction to C Programming. Chih-Wei Tang ( 唐之瑋 ) Department of Communication Engineering National Central University JhongLi, Taiwan

Chapter 1 & 2 Introduction to C Language

Fundamentals of Programming Session 4

Fundamentals of Programming. Lecture 3: Introduction to C Programming

Programming for Engineers Introduction to C

2/29/2016. Definition: Computer Program. A simple model of the computer. Example: Computer Program. Data types, variables, constants

Introduction to Programming

Data types, variables, constants

Chapter 2, Part I Introduction to C Programming

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

Chapter 1 Introduction to Computers and C++ Programming

Introduction to C# Applications

Introduction to C++ Programming. Adhi Harmoko S, M.Komp

Fundamental of Programming (C)

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

Introduction to C++ Programming Pearson Education, Inc. All rights reserved.

1 EEE1008 C Programming

Programming Fundamentals (CS 302 ) Dr. Ihsan Ullah. Lecturer Department of Computer Science & IT University of Balochistan

SEQUENTIAL STRUCTURE. Erkut ERDEM Hacettepe University October 2010

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

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

ANSI C Programming Simple Programs

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

Introduction to C Programming

Variables Data types Variable I/O. C introduction. Variables. Variables 1 / 14

IS 0020 Program Design and Software Tools

Lecture 3 Tao Wang 1

CHAPTER 1.2 INTRODUCTION TO C++ PROGRAMMING. Dr. Shady Yehia Elmashad

Introduction to Programming

Università degli Studi di Bologna Facoltà di Ingegneria. Principles, Models, and Applications for Distributed Systems M

Programming and Data Structures

IT 374 C# and Applications/ IT695 C# Data Structures

ET156 Introduction to C Programming

Chapter 2: Overview of C. Problem Solving & Program Design in C

Basic Elements of C. Staff Incharge: S.Sasirekha

6.096 Introduction to C++ January (IAP) 2009

A Fast Review of C Essentials Part I

Laboratory 2: Programming Basics and Variables. Lecture notes: 1. A quick review of hello_comment.c 2. Some useful information

Fundamentals of Programming

CSc 10200! Introduction to Computing. Lecture 2-3 Edgardo Molina Fall 2013 City College of New York

Introduction to the C Programming Language

12/22/11. Java How to Program, 9/e. Help you get started with Eclipse and NetBeans integrated development environments.

Assoc. Prof. Dr. Marenglen Biba. (C) 2010 Pearson Education, Inc. All rights reserved.

Chapter 2, Part III Arithmetic Operators and Decision Making

DEPARTMENT OF MATHS, MJ COLLEGE

Programming - 1. Computer Science Department 011COMP-3 لغة البرمجة 1 لطالب كلية الحاسب اآللي ونظم المعلومات 011 عال- 3

Intro to Computer Programming (ICP) Rab Nawaz Jadoon

2.1. Chapter 2: Parts of a C++ Program. Parts of a C++ Program. Introduction to C++ Parts of a C++ Program

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

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

Data Types and Variables in C language

Character Set. The character set of C represents alphabet, digit or any symbol used to represent information. Digits 0, 1, 2, 3, 9

Creating a C++ Program

Course Outline. Introduction to java

Introduction to C# Applications Pearson Education, Inc. All rights reserved.

BLM2031 Structured Programming. Zeyneb KURT

Programming in C++ 4. The lexical basis of C++

Programming. C++ Basics

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

Computer Science & Information Technology (CS) Rank under AIR 100. Examination Oriented Theory, Practice Set Key concepts, Analysis & Summary

BITG 1233: Introduction to C++

Introduction to Python Programming

Unit 3. Operators. School of Science and Technology INTRODUCTION

Expressions and Data Types CSC 121 Spring 2015 Howard Rosenthal

Preview from Notesale.co.uk Page 6 of 52

Variables in C. Variables in C. What Are Variables in C? CMSC 104, Fall 2012 John Y. Park

C Language, Token, Keywords, Constant, variable

Binghamton University. CS-211 Fall Syntax. What the Compiler needs to understand your program

Lecture 02 C FUNDAMENTALS

2. Numbers In, Numbers Out

Fundamentals of C. Structure of a C Program

BASIC ELEMENTS OF A COMPUTER PROGRAM

Copyright 1999 by Deitel & Associates, Inc. All Rights Reserved.

C - Basic Introduction

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

Chapter 2: Basic Elements of C++

C Fundamentals & Formatted Input/Output. adopted from KNK C Programming : A Modern Approach

Syntax and Variables

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

Computer System and programming in C

2. Numbers In, Numbers Out

CS102: Variables and Expressions

Input/Output Week 5:Lesson 16.1

Lecture 3. More About C

B.V. Patel Institute of Business Management, Computer & Information Technology, Uka Tarsadia University

Arithmetic Operators. Binary Arithmetic Operators. Arithmetic Operators. A Closer Look at the / Operator. A Closer Look at the % Operator

.. Cal Poly CPE 101: Fundamentals of Computer Science I Alexander Dekhtyar..

BBM 101 Introduc/on to Programming I Fall 2014, Lecture 3. Aykut Erdem, Erkut Erdem, Fuat Akal

BIL 104E Introduction to Scientific and Engineering Computing. Lecture 1

INTRODUCTION 1 AND REVIEW

The component base of C language. Nguyễn Dũng Faculty of IT Hue College of Science

Presented By : Gaurav Juneja

PROGRAMMAZIONE I A.A. 2018/2019

Lab 2: Structured Program Development in C

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

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

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

Introduction to Java Applications; Input/Output and Operators

CS 241 Computer Programming. Introduction. Teacher Assistant. Hadeel Al-Ateeq

Transcription:

1 C: How to Program Week 2 2007/Mar/05

Chapter 2 - Introduction to C Programming 2 Outline 2.1 Introduction 2.2 A Simple C Program: Printing a Line of Text 2.3 Another Simple C Program: Adding Two Integers 2.4 Memory Concepts 2.5 Arithmetic in C 2.6 Decision Making: Equality and Relational Operators

Objectives 3 In this chapter, you will learn: To be able to write simple computer programs in C. To be able to use simple input and output statements. To become familiar with fundamental data types. To understand computer memory concepts. To be able to use arithmetic operators. To understand the precedence of arithmetic operators. To be able to write simple decision making statements.

4 2.1 Introduction C programming language Structured and disciplined approach to program design Structured programming Introduced in chapters 3 and 4 Used throughout the remainder of the book

2.2 A Simple C Program: Printing a Line of Text 5 /* Fig. 2.1: fig02_01.c A first program in C */ #include <stdio.h> /* function main begins program execution */ int main() { printf( "Welcome to C!\n" ); return 0; /* indicates successful termination */ } /* end main */ Welcome to C!

2.2 A Simple C Program: Printing a Line of Text Comments Text surrounded by /* and */ is ignored by computer Used to describe program #include <stdio.h> Preprocessor directive Tells computer to load contents of a certain file <stdio.h> allows standard input/output operations 6

2.2 A Simple C Program: Printing a Line of Text int main() C++ programs contain one or more functions, exactly one of which must be main Parenthesis used to indicate a function int means that main "returns" an integer value Braces ({ and }) indicate a block The bodies of all functions must be contained in braces 7

2.2 A Simple C Program: Printing a Line of Text printf( "Welcome to C!\n" ); Instructs computer to perform an action Specifically, prints the string of characters within quotes (" ") Entire line called a statement All statements must end with a semicolon (;) Escape character (\) Indicates that printf should do something out of the ordinary \nis the newline character 8

2.2 A Simple C Program: Printing a Line of Text 9 Escape Description Sequence \n Newline. Position the cursor at the beginning of the next line. \t Horizontal tab. Move the cursor to the next tab stop. \a Alert. Sound the system bell. \\ Backslash. Insert a backslash character in a string. \" Double quote. Insert a double quote character in a string. Fig. 2.2 Some common escape sequences.

2.2 A Simple C Program: Printing a Line of Text return 0; A way to exit a function return 0, in this case, means that the program terminated normally Right brace } Indicates end of main has been reached Linker When a function is called, linker locates it in the library Inserts it into object program If function name is misspelled, the linker will produce an error because it will not be able to find function in the library 10

/* Fig. 2.3: fig02_03.c Printing on one line with two printf statements */ #include <stdio.h> /* function main begins program execution */ int main() { printf( "Welcome " ); printf( "to C!\n" ); return 0; /* indicates that program ended successfully */ } /* end main */ Outline fig02_03.c 11 Welcome to C! Program Output Copyright 1992 2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved.

/* Fig. 2.4: fig02_04.c Printing multiple lines with a single printf */ #include <stdio.h> /* function main begins program execution */ int main() { printf("welcome\nto\nc!\n" ); return 0; /* indicates that program ended successfully */ } /* end main */ Outline fig02_04.c 12 Welcome to C! Program Output Copyright 1992 2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved.

/* Fig. 2.5: fig02_05.c Addition program */ #include <stdio.h> /* function main begins program execution */ int main() { int integer1; /* first number to be input by user */ int integer2; /* second number to be input by user */ int sum; /* variable in which sum will be stored */ printf("enter first integer\n" ); /* prompt */ scanf( "%d", &integer1 ); /* read an integer */ printf( "Enter second integer\n" ); /* prompt */ scanf( "%d", &integer2 ); /* read an integer */ sum = integer1 + integer2; /* assign total to sum */ printf( "Sum is %d\n", sum ); /* print sum */ return 0; /* indicates that program ended successfully */ } /* end function main */ Outline fig02_05.c 13 Copyright 1992 2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved.

Outline 14 Enter first integer 45 Enter second integer 72 Sum is 117 Program Output Copyright 1992 2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved.

2.3 Another Simple C Program: Adding Two Integers As before Comments, #include <stdio.h> and main int integer1, integer2, sum; Definition of variables Variables: locations in memory where a value can be stored int means the variables can hold integers (-1, 3, 0, 47) Variable names (identifiers) integer1, integer2, sum Identifiers: consist of letters, digits (cannot begin with a digit) and underscores( _ ) Case sensitive Definitions appear before executable statements If an executable statement references and undeclared variable it will produce a syntax (compiler) error 15

2.3 Another Simple C Program: Adding Two Integers 16 scanf( "%d", &integer1 ); Obtains a value from the user scanf uses standard input (usually keyboard) This scanf statement has two arguments %d-indicates data should be a decimal integer &integer1 - location in memory to store variable &is confusing in beginning for now, just remember to include it with the variable name in scanf statements When executing the program the user responds to the scanf statement by typing in a number, then pressing the enter (return) key

2.3 Another Simple C Program: Adding Two Integers = (assignment operator) Assigns a value to a variable Is a binary operator (has two operands) sum = variable1 + variable2; sum gets variable1 + variable2; Variable receiving value on left printf( "Sum is %d\n", sum ); 17 Similar to scanf %dmeans decimal integer will be printed sum specifies what integer will be printed Calculations can be performed inside printf statements printf( "Sum is %d\n", integer1 + integer2 );

18 2.4 Memory Concepts Variables Variable names correspond to locations in the computer's memory Every variable has a name, a type, a size and a value Whenever a new value is placed into a variable (through scanf, for example), it replaces (and destroys) the previous value Reading variables from memory does not change them

2.4 Memory Concepts 19 A visual representation (continued) Loading Variable Value address integer1 xxxx x111011 integer2 xxxx x111100 sum xxxx x111101 Reading integer1 Variable Value address integer1 45 x111011 integer2 xxxx x111100 sum xxxx x111101

2.4 Memory Concepts 20 A visual representation (continued) Reading Variable Value address integer1 45 x111011 integer2 integer2 72 x111100 sum xxxx x111101 Adding Variable Value address integer1 45 x111011 integer2 72 x111100 sum 117 x111101 +

21 2.5 Arithmetic Arithmetic calculations Use * for multiplication and / for division Integer division truncates remainder 7/5evaluates to 1 Modulus operator(%) returns the remainder 7%5evaluates to 2 Operator precedence Some arithmetic operators act before others (i.e., multiplication before addition) Use parenthesis when needed Example: Find the average of three variables a, b and c Do not use: a + b + c / 3 Use: (a + b + c ) / 3

2.5 Arithmetic Arithmetic operators: C operation Arithmetic operator Algebraic expression C expression Addition + f + 7 f + 7 Subtraction - p c p - c Multiplication * bm b * m Division / x / y x / y Modulus % r mod s r % s Rules of operator precedence: Operator(s) Operation(s) Order of evaluation (precedence) () Parentheses Evaluated first. If the parentheses are nested, the expression in the innermost pair is evaluated first. If there are several pairs of parentheses on the same level (i.e., not nested), they are evaluated left to right. *, /, or % Multiplication, Division, Modulus + or - Addition Subtraction Evaluated second. If there are several, they are evaluated left to right. Evaluated last. If there are several, they are evaluated left to right. 22

2.6 Decision Making: Equality and Relational Operators Step 1. y = 2 * 5 * 5 + 3 * 5 + 7; 2 * 5 is 10 (Leftmost multiplication) 23 Step 2. y = 10 * 5 + 3 * 5 + 7; 10 * 5 is 50 (Leftmost multiplication) Step 3. y = 50 + 3 * 5 + 7; 3 * 5 is 15 (Multiplication before addition) Step 4. y = 50 + 15 + 7; 50 + 15 is 65 (Leftmost addition) Step 5. y = 65 + 7; 65 + 7 is 72 (Last addition) Step 6. y = 72; (Last operation place 72 in y)

2.6 Decision Making: Equality and Relational Operators Executable statements Perform actions (calculations, input/output of data) Perform decisions May want to print "pass" or "fail" given the value of a test grade ifcontrol statement Simple version in this section, more detail later If a condition is true, then the body of the if statement executed 0is false, non-zero is true Control always resumes after the if structure Keywords Special words reserved for C Cannot be used as identifiers or variable names 24

2.6 Decision Making: Equality and Relational Operators 25 Standard algebraic equality operator or relational operator C equality or relational operator Example of C condition Meaning of C condition Equality Operators = == x == y x is equal to y!= x!= y x is not equal to y Relational Operators > > x > y x is greater than y < < x < y x is less than y >= >= x >= y x is greater than or equal to y <= <= x <= y x is less than or equal to y

/* Fig. 2.13: fig02_13.c Using if statements, relational operators, and equality operators */ #include <stdio.h> /* function main begins program execution */ int main() { int num1; /* first number to be read from user */ int num2; /* second number to be read from user */ Outline fig02_13.c (Part 1 of 2) 26 printf( "Enter two integers, and I will tell you\n" ); printf( "the relationships they satisfy: " ); scanf( "%d%d", &num1, &num2 ); /* read two integers */ if ( num1 == num2 ) { printf( "%d is equal to %d\n", num1, num2 ); } /* end if */ if ( num1!= num2 ) { printf( "%d is not equal to %d\n", num1, num2 ); } /* end if */ Copyright 1992 2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved.

if ( num1 < num2 ) { printf( "%d is less than %d\n", num1, num2 ); } /* end if */ if ( num1 > num2 ) { printf( "%d is greater than %d\n", num1, num2 ); } /* end if */ Outline fig02_13.c (Part 2 of 2) 27 if ( num1 <= num2 ) { printf( "%d is less than or equal to %d\n", num1, num2 ); } /* end if */ if ( num1 >= num2 ) { printf( "%d is greater than or equal to %d\n", num1, num2 ); } /* end if */ return 0; /* indicates that program ended successfully */ } /* end function main */ Enter two integers, and I will tell you the relationships they satisfy: 3 7 3 is not equal to 7 3 is less than 7 3 is less than or equal to 7 Program Output Copyright 1992 2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved.

Outline 28 Enter two integers, and I will tell you the relationships they satisfy: 22 12 22 is not equal to 12 22 is greater than 12 22 is greater than or equal to 12 Program Output (continued) Enter two integers, and I will tell you the relationships they satisfy: 7 7 7 is equal to 7 7 is less than or equal to 7 7 is greater than or equal to 7 Copyright 1992 2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved.

2.6 Decision Making: Equality and Relational Operators 29 Operators Associativity * / % left to right + - left to right < <= > >= left to right ==!= left to right = right to left Fig. 2.14 Precedence and associativity of the operators discussed so far.

2.6 Decision Making: Equality and Relational Operators 30 Keywords auto double int struct break else long switch case enum register typedef char extern return union const float short unsigned continue for signed void default goto sizeof volatile do if static while Fig. 2.15 C s reserved keywords.