 2007 Pearson Education, Inc. All rights reserved. 1 5 5 C Functions.

Slides:



Advertisements
Similar presentations
 2006 Pearson Education, Inc. All rights reserved Functions.
Advertisements

Chapter 5 C Functions The best way to develop and maintain a large program is to divide it into several smaller program modules, each of which is more.
 2007 Pearson Education, Inc. All rights reserved C Functions.
C Lecture Notes 1 Program Control (Cont...). C Lecture Notes 2 4.8The do / while Repetition Structure The do / while repetition structure –Similar to.
 2000 Prentice Hall, Inc. All rights reserved. Chapter 5 - Functions Outline 5.1Introduction 5.2Program Modules in C 5.3Math Library Functions 5.4Functions.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Chapter 5 - Functions Outline 5.1Introduction 5.2Program.
FunctionsFunctions Systems Programming. Systems Programming: Functions 2 Functions   Simple Function Example   Function Prototype and Declaration.
 2007 Pearson Education, Inc. All rights reserved C Functions.
 2007 Pearson Education, Inc. All rights reserved C Functions.
 2003 Prentice Hall, Inc. All rights reserved. 1 Functions Modules: functions and classes Programs use new and “prepackaged” modules –New: programmer-defined.
C Lecture Notes Functions (Cont...). C Lecture Notes 5.8Calling Functions: Call by Value and Call by Reference Used when invoking functions Call by value.
Functions. 3Introduction Divide and conquer –Construct a program from smaller pieces or components –Each piece more manageable than the original program.
1 Functions Modules: functions and classes Programs use new and “prepackaged” modules –New: programmer-defined functions, classes –Prepackaged: from the.
 2000 Prentice Hall, Inc. All rights reserved. Functions in C Outline 1Introduction 2Program Modules in C 3Math Library Functions 4Functions 5Function.
FunctionsFunctions Systems Programming Concepts. Functions   Simple Function Example   Function Prototype and Declaration   Math Library Functions.
 2000 Prentice Hall, Inc. All rights reserved. Chapter 5 – Recursive Funtions From Deitel’s “C” Book 5.13Recursion 5.14Example Using Recursion: The Fibonacci.
Programming in C++ Language ( ) Lecture 6: Functions-Part2 Dr. Lubna Badri.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. C How To Program - 4th edition Deitels Class 05 University.
 2006 Pearson Education, Inc. All rights reserved Functions and an Introduction to Recursion.
Functions and an Introduction to Recursion.  Recursive function ◦ A function that calls itself, either directly, or indirectly (through another function)
Functions in C Outline 1Introduction 2Program Modules in C 3Math Library Functions 4Functions 5Function Definitions 6Function Prototypes 7Header Files.
Chapter 06 (Part I) Functions and an Introduction to Recursion.
 2008 Pearson Education, Inc. All rights reserved JavaScript: Functions.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Functions (Recursion) Outline 5.13Recursion 5.14Example.
 2007 Pearson Education, Inc. All rights reserved C Functions -Continue…-
Programming in C++ Language ( ) Lecture 5: Functions-Part1 Dr. Lubna Badri.
1 CISC181 Introduction to Computer Science Dr. McCoy Lecture 6 September 17, 2009.
Dale Roberts CSCI N305 Functions Recursion Department of Computer and Information Science, School of Science, IUPUI.
Chapter 5 - Functions Outline 5.1Introduction 5.2Program Modules in C 5.3Math Library Functions 5.4Functions 5.5Function Definitions 5.6Function Prototypes.
 2007 Pearson Education, Inc. All rights reserved C Functions.
 2007 Pearson Education, Inc. All rights reserved Random Number Generation  rand function – Load – Returns "random" number between
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Chapter 5 - Functions Outline 5.1Introduction 5.2Program.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Functions Outline 5.1Introduction 5.2Program Modules.
C++ Programming Lecture 9 Functions – Part I By Ghada Al-Mashaqbeh The Hashemite University Computer Engineering Department.
Dale Roberts CSCI 230 Functions Scope, Parameter Passing, Storage Specifiers Department of Computer and Information Science, School of Science, IUPUI Dale.
KIC/Computer Programming & Problem Solving 1.  Introduction  Program Modules in C  Math Library Functions  Functions  Function Definitions  Function.
EPSII 59:006 Spring Call-by-value example #include void increment(int); //prototype for increment function int main(void) { int a=1; printf("Value.
TMC1414/TMC1413 I NTRODUCTION T O P ROGRAMMING Lecture 06 Function.
KIC/Computer Programming & Problem Solving 1.  Header Files  Storage Classes  Scope Rules  Recursion Outline KIC/Computer Programming & Problem Solving.
 2000 Prentice Hall, Inc. All rights reserved. 5.2Program Modules in C Functions –Modules in C –Programs combine user-defined functions with library functions.
Dale Roberts CSCI 230 Functions Department of Computer and Information Science, School of Science, IUPUI Dale Roberts, Lecturer
 2000 Prentice Hall, Inc. All rights reserved. 1 Chapter 3 - Functions.
 2000 Prentice Hall, Inc. All rights reserved Introduction Divide and conquer –Construct a program from smaller pieces or components –Each piece.
CHAPTER 4 FUNCTIONS Dr. Shady Yehia Elmashad. Outline 1.Introduction 2.Program Components in C++ 3.Math Library Functions 4.Functions 5.Function Definitions.
Dale Roberts CSCI N305 Functions Declarations Department of Computer and Information Science, School of Science, IUPUI.
 2000 Prentice Hall, Inc. All rights reserved Program Components in C++ Function definitions –Only written once –These statements are hidden from.
 2003 Prentice Hall, Inc. All rights reserved. 1 IS 0020 Program Design and Software Tools Introduction to C++ Programming Lecture 2 Functions September.
 2007 Pearson Education, Inc. All rights reserved C Functions.
BIL 104E Introduction to Scientific and Engineering Computing Lecture 4.
5 C Functions.
Functions Course conducted by: Md.Raihan ul Masood
Functions.
5 C Functions.
Functions and an Introduction to Recursion
RECURSION.
C Functions -Continue…-.
5 C Functions.
Programming Fundamentals Lecture #7 Functions
CSC113: Computer Programming (Theory = 03, Lab = 01)
Deitel- C:How to Program (5ed)
Chapter 5 - Functions Outline 5.1 Introduction
Chapter 5 - Functions Outline 5.1 Introduction
Functions.
Chapter 5 - Functions Outline 5.1 Introduction
Scope, Parameter Passing, Storage Specifiers
Functions Declarations CSCI 230
Chapter 6 - Functions Outline 5.1 Introduction
5 C Functions.
5 C Functions.
1-6 Midterm Review.
Presentation transcript:

 2007 Pearson Education, Inc. All rights reserved C Functions

 2007 Pearson Education, Inc. All rights reserved. 2 OBJECTIVES In this chapter you will learn:  To construct programs modularly from small pieces called functions.  The common math functions available in the C Standard Library.  To create new functions.  The mechanisms used to pass information between functions.  Simulation techniques using random num­ber generation.  How to write and use recursive functions, i.e., functions that call themselves.

 2007 Pearson Education, Inc. All rights reserved Introduction 5.2Program Modules in C 5.3Math Library Functions 5.4Functions 5.5Function Definitions 5.6Function Prototypes 5.7Function Call Stack and Activation Records 5.8Headers 5.9Calling Functions: Call-by-Value and Call-by- Reference

 2007 Pearson Education, Inc. All rights reserved Random Number Generation 5.11Example: A Game of Chance 5.12Storage Classes 5.13Scope Rules 5.14Recursion 5.15Example Using Recursion: Fibonacci Series 5.16Recursion vs. Iteration

 2007 Pearson Education, Inc. All rights reserved Introduction  Divide and conquer – Construct a program from smaller pieces or components - These smaller pieces are called modules – Each piece more manageable than the original program

 2007 Pearson Education, Inc. All rights reserved Program Modules in C  Functions – Modules in C – Programs combine user-defined functions with library functions - C standard library has a wide variety of functions  Function calls – Invoking functions - Provide function name and arguments (data) - Function performs operations or manipulations - Function returns results – Function call analogy: - Boss asks worker to complete task Worker gets information, does task, returns result Information hiding: boss does not know details

 2007 Pearson Education, Inc. All rights reserved. 7 Fig. 5.1 | Hierarchical boss function/worker function relationship.

 2007 Pearson Education, Inc. All rights reserved Math Library Functions  Math library functions – perform common mathematical calculations – #include  Format for calling functions – FunctionName( argument ); - If multiple arguments, use comma-separated list – printf( "%.2f", sqrt( ) ); - Calls function sqrt, which returns the square root of its argument - All math functions return data type double – Arguments may be constants, variables, or expressions

 2007 Pearson Education, Inc. All rights reserved. 9 Fig. 5.2 | Commonly used math library functions. (Part 1 of 2.)

 2007 Pearson Education, Inc. All rights reserved. 10 Fig. 5.2 | Commonly used math library functions. (Part 2 of 2.) WRITE PROGRAM USING POWER FUNCTION FROM INT 1 TO 10

 2007 Pearson Education, Inc. All rights reserved Functions  Functions – Modularize a program – All variables defined inside functions are local variables - Known only in function defined – Parameters - Communicate information between functions - Local variables  Benefits of functions – Divide and conquer - Manageable program development – Software reusability - Use existing functions as building blocks for new programs - Abstraction - hide internal details (library functions) – Avoid code repetition

 2007 Pearson Education, Inc. All rights reserved Function Definitions  Function definition format return-value-type function-name( parameter-list ) { declarations and statements } – Function-name: any valid identifier – Return-value-type: data type of the result (default int ) - void – indicates that the function returns nothing – Parameter-list: comma separated list, declares parameters - A type must be listed explicitly for each parameter unless, the parameter is of type int

 2007 Pearson Education, Inc. All rights reserved Function Definitions  Function definition format (continued) return-value-type function-name( parameter-list ) { declarations and statements } – Definitions and statements: function body (block) - Variables can be defined inside blocks (can be nested) - Functions can not be defined inside other functions – Returning control - If nothing returned return; or, until reaches right brace - If something returned return expression ;

 2007 Pearson Education, Inc. All rights reserved. 14 Outline fig05_03.c Function definition Function prototype indicates function will be defined later in the program Call to square function EXAMPLE 5.3

 2007 Pearson Education, Inc. All rights reserved. 15 Outline fig05_03.c Function definition Function prototype indicates function will be defined later in the program Call to square function EXAMPLE 5.3void

 2007 Pearson Education, Inc. All rights reserved. 16 Outline fig05_04.c (1 of 2 ) Function prototype Function call EXAMPLE 5.4

 2007 Pearson Education, Inc. All rights reserved. 17 Outline fig05_04.c (2 of 2 ) Function definition

 2007 Pearson Education, Inc. All rights reserved Function Prototypes  Function prototype – Function name – Parameters – what the function takes in – Return type – data type function returns (default int ) – Used to validate functions – Prototype only needed if function definition comes after use in program – The function with the prototype int maximum( int x, int y, int z ); - Takes in 3 ints - Returns an int  Promotion rules and conversions – Converting to lower types can lead to errors

 2007 Pearson Education, Inc. All rights reserved. 19 Fig. 5.5 | Promotion hierarchy for data types.

 2007 Pearson Education, Inc. All rights reserved Headers  Header files – Contain function prototypes for library functions –,, etc – Load with #include #include  Custom header files (save in folder include) – Create file with functions – Save as filename.h – Load in other files with # include "filename.h" – Reuse functions EXAMPLE 5.4 with header EXAMPLE 5.4 header file

 2007 Pearson Education, Inc. All rights reserved. 21 Fig. 5.6 | Some of the standard library headers. (Part 1 of 3.)

 2007 Pearson Education, Inc. All rights reserved. 22 Fig. 5.6 | Some of the standard library headers. (Part 2 of 3.)

 2007 Pearson Education, Inc. All rights reserved. 23 Fig. 5.6 | Some of the standard library headers. (Part 3 of 3.)

 2007 Pearson Education, Inc. All rights reserved Calling Functions: Call-by-Value and Call-by-Reference  Call by value (page 32 notes intro) – Copy of argument passed to function – Changes in function do not effect original – Use when function does not need to modify argument - Avoids accidental changes  Call by reference (Use pointer and array) – Passes original argument – Changes in function effect original – Only used with trusted functions  For now, we focus on call by value

 2007 Pearson Education, Inc. All rights reserved Random Number Generation  rand function – Load – Returns "random" number between 0 and RAND_MAX (at least ) i = rand(); – Pseudorandom - Preset sequence of "random" numbers - Same sequence for every function call  Scaling – To get a random number between 1 and n 1 + ( rand() % n ) - rand() % n returns a number between 0 and n Add 1 to make random number between 1 and n 1 + ( rand() % 6) number between 1 and 6 EXAMPLE random number

 2007 Pearson Education, Inc. All rights reserved. 26 Outline fig05_07.c Generates a random number between 1 and 6 EXAMPLE 5.7

 2007 Pearson Education, Inc. All rights reserved Random Number Generation  srand function – – Takes an integer seed and jumps to that location in its "random" sequence srand( seed );

 2007 Pearson Education, Inc. All rights reserved. 28 Outline fig05_09.c (1 of 2 ) Seeds the rand function

 2007 Pearson Education, Inc. All rights reserved. 29 Outline fig05_09.c (2 of 2 )

 2007 Pearson Education, Inc. All rights reserved Storage Classes  DEFINITION OF LOCAL AND GLOBAL VARIABLES (PAGE 4 CNOTES)  Storage class specifiers – Storage duration – how long an object exists in memory – Scope – where object can be referenced in program – Linkage – specifies the files in which an identifier is known (more in Chapter 14)  Automatic storage – Object created and destroyed within its block – auto: default for local variables auto double x, y; – register: tries to put variable into high-speed registers - Can only be used for automatic variables register int counter = 1;

 2007 Pearson Education, Inc. All rights reserved Storage Classes  Static storage – Variables exist for entire program execution – Default value of zero – static: local variables defined in functions. - Keep value after function ends - Only known in their own function – extern: default for global variables and functions - Known in any function

 2007 Pearson Education, Inc. All rights reserved Scope Rules  File scope – Identifier defined outside function, known in all functions – Used for global variables, function definitions, function prototypes  Function scope – Can only be referenced inside a function body – Used only for labels ( start:, case:, etc.)

 2007 Pearson Education, Inc. All rights reserved Scope Rules  Block scope – Identifier declared inside a block - Block scope begins at definition, ends at right brace – Used for variables, function parameters (local variables of function) – Outer blocks "hidden" from inner blocks if there is a variable with the same name in the inner block  Function prototype scope – Used for identifiers in parameter list

 2007 Pearson Education, Inc. All rights reserved. 34 Outline fig05_12.c (1 of 4 ) Global variable with file scope Variable with block scope

 2007 Pearson Education, Inc. All rights reserved. 35 Outline fig05_12.c (2 of 4 ) Variable with block scope

 2007 Pearson Education, Inc. All rights reserved. 36 Outline fig05_12.c (3 of 4 ) Static variable with block scope Global variable

 2007 Pearson Education, Inc. All rights reserved. 37 Outline fig05_12.c (4 of 4 )

 2007 Pearson Education, Inc. All rights reserved Recursion  Recursive functions – Functions that call themselves – Can only solve a base case – Divide a problem up into - What it can do - What it cannot do What it cannot do resembles original problem The function launches a new copy of itself (recursion step) to solve what it cannot do – Eventually base case gets solved - Gets plugged in, works its way up and solves whole problem

 2007 Pearson Education, Inc. All rights reserved Recursion  Example: factorials – 5! = 5 * 4 * 3 * 2 * 1 – Notice that - 5! = 5 * 4! - 4! = 4 * 3!... – Can compute factorials recursively – Solve base case ( 1! = 0! = 1 ) then plug in - 2! = 2 * 1! = 2 * 1 = 2; - 3! = 3 * 2! = 3 * 2 = 6;

 2007 Pearson Education, Inc. All rights reserved. 40 Fig | Recursive evaluation of 5!.

 2007 Pearson Education, Inc. All rights reserved. 41 Outline fig05_14.c (1 of 2 )

 2007 Pearson Education, Inc. All rights reserved. 42 Outline fig05_14.c (2 of 2 )

 2007 Pearson Education, Inc. All rights reserved. 43 Common Programming Error 5.15 Forgetting to return a value from a recursive function when one is needed.

 2007 Pearson Education, Inc. All rights reserved. 44 Common Programming Error 5.16 Either omitting the base case, or writing the recursion step incorrectly so that it does not converge on the base case, will cause infinite recursion, eventually exhausting memory. This is analogous to the problem of an infinite loop in an iterative (nonrecursive) solution. Infinite recursion can also be caused by providing an unexpected input.

 2007 Pearson Education, Inc. All rights reserved Example Using Recursion: Fibonacci Series  Fibonacci series: 0, 1, 1, 2, 3, 5, 8... – Each number is the sum of the previous two – Can be solved recursively: - fib( n ) = fib( n - 1 ) + fib( n – 2 ) – Code for the fibonacci function long fibonacci( long n ) { if (n == 0 || n == 1) // base case return n; else return fibonacci( n - 1) + fibonacci( n – 2 ); }

 2007 Pearson Education, Inc. All rights reserved. 46 Outline fig05_15.c (1 of 4 )

 2007 Pearson Education, Inc. All rights reserved. 47 Outline fig05_15.c (2 of 4 )

 2007 Pearson Education, Inc. All rights reserved. 48 Outline fig05_15.c (3 of 4 )

 2007 Pearson Education, Inc. All rights reserved. 49 Outline fig05_15.c (4 of 4 )

 2007 Pearson Education, Inc. All rights reserved. 50 Fig | Set of recursive calls for fibonacci(3).

 2007 Pearson Education, Inc. All rights reserved. 51 Common Programming Error 5.17 Writing programs that depend on the order of evaluation of the operands of operators other than &&, ||, ?:, and the comma (, ) operator can lead to errors because compilers may not necessarily evaluate the operands in the order you expect.

 2007 Pearson Education, Inc. All rights reserved. 52 Portability Tip 5.2 Programs that depend on the order of evaluation of the operands of operators other than &&, ||, ?:, and the comma (, ) operator can function differently on systems with different compilers.

 2007 Pearson Education, Inc. All rights reserved. 53 Performance Tip 5.4 Avoid Fibonacci-style recursive programs which result in an exponential “explosion” of calls.

 2007 Pearson Education, Inc. All rights reserved Recursion vs. Iteration  Repetition – Iteration: explicit loop – Recursion: repeated function calls  Termination – Iteration: loop condition fails – Recursion: base case recognized  Both can have infinite loops  Balance – Choice between performance (iteration) and good software engineering (recursion)

 2007 Pearson Education, Inc. All rights reserved. 55 Software Engineering Observation 5.13 Any problem that can be solved recursively can also be solved iteratively (nonrecursively). A recursive approach is normally chosen in preference to an iterative approach when the recursive approach more naturally mirrors the problem and results in a program that is easier to understand and debug. Another reason to choose a recursive solution is that an iterative solution may not be apparent.

 2007 Pearson Education, Inc. All rights reserved. 56 Performance Tip 5.5 Avoid using recursion in performance situations. Recursive calls take time and consume additional memory.

 2007 Pearson Education, Inc. All rights reserved. 57 Common Programming Error 5.18 Accidentally having a nonrecursive function call itself either directly, or indirectly through another function.

 2007 Pearson Education, Inc. All rights reserved. 58 Performance Tip 5.6 Functionalizing programs in a neat, hierarchical manner promotes good software engineering. But it has a price. A heavily functionalized program—as compared to a monolithic (i.e., one-piece) program without functions—makes potentially large numbers of function calls, and these consume execution time on a computer’s processor(s). So, although monolithic programs may perform better, they are more difficult to program, test, debug, maintain, and evolve.

 2007 Pearson Education, Inc. All rights reserved. 59 Fig | Recursion examples and exercises in the text. (Part 1 of 2.)

 2007 Pearson Education, Inc. All rights reserved. 60 Fig | Recursion examples and exercises in the text. (Part 2 of 2.)