SlideShare a Scribd company logo
Fundamentals of
Computer Programming
Chapter 5
Modular Programming
(Function in C++)
Chere L. (M.Tech)
Lecturer, SWEG, AASTU
1
Outline
▪ Introduction to modular programming
▪ Function declaration and definition
▪ Calling a function and Return types
▪ Function parameters (Value Vs. Reference)
▪ Parameter Passing
✔ by value
✔ by reference
▪ Default arguments
▪ Function Overloading
▪ Scope of variables (revision)
▪ Special functions (recursive functions, inline functions)
▪ Array in function (array as parameter, return array, call with array)
Chapter 5 2
1. Introduction Modular Programming
Modular programming
 Programming approach in a complex problem breaking down in
to smaller manageable pieces
 The design of a program into individual components (modules)
that can be programmed and tested independently.
 It is a requirement for effective development and maintenance
of large programs and projects
 Procedures of a common functionality are grouped together
into separate modules.
 A program therefore no longer consists of only one single part
 It is now divided into several smaller parts which interact and
which form the whole program.
Chapter 5 3
Cont’d . . .
Modular program
 A program consisting of interrelated segments (or modules)
arranged in a logical and understandable form
 Modules in C++ can be classes or functions
Why Modular programming?
 Easy to write a correct small function
 Code Re-usability – Write once and use multiple times
 Code optimization – No need to write lot of code
 Maintainability – Easily to debug, maintain/modify the program
 Understandability – Easy to read, write and debug a function
Chapter 5 4
2. The concepts of Function
Functions
 A function is a block of code (subprogram) that performs a
specific task.
 Complicated tasks should be broken down into multiple
functions.
 Each can be called in turn when it needed
 Note:
– Every C++ program has at least one function, main().
Chapter 5 5
Cont’d . . .
 A function can Accepts
an input, act on data
(process the input) and
return a value (produces
an output).
 A function’s processing is
encapsulated and hidden
within the function
Chapter 5 6
Cont’d . . .
Types of Functions
Chapter 5 7
3. Function declaration and definition
Components of a function
 Function name
 Function arguments (parameters)
 Function body
 Return type
Creation of a function
▪ Function declaration
 The process of tells the compiler about a function name.
 Also called function prototype creation
▪ Function definition
 Give body of function (i.e. write logic inside function body).
Chapter 5 8
Cont’d . . .
There are three ways to declare a function:
 Write your prototype into a separate file, and then use the
#include directive to include it in your program.
 Write the prototype in side your program before the main()
function.
 Define the function before it is called by any other function.
 The definition act as its own declaration.
▪ Declaration syntax:
▪ Definition syntax:
Chapter 5 9
Cont’d . . .
Chapter 5 10
▪ A value which is pass in
function at the time of
calling of function
▪ It is like a placeholder.
▪ It is optional.
▪ Parameter identifier is
also optional
▪ The collection
of statements
▪ A function may
return a value.
▪ It refers to the data
type of the value the
function returns.
▪ It is optional (void).
▪ The name of function it is decided by
programmer
▪ Should be meaningful valid identifier
▪ Value returned by the function
▪ Single literal or expression
Cont’d . . .
Function Header
 First line of a function, which contains:
 The type of data returned by the function (if any)
 The name of the function
 The type of data that must be passed into the function
when it is invoked (if any)
Chapter 5 11
Cont’d . . .
Chapter 5 12
Examples
4. Function calling, execution and return
Chapter 5 13
Function calling
 Syntax :
func_name(parameters );
or
Variable = func_name(parameters);
Function return
 Syntax :
return value/variable;
or return expression;
Cont’d . . .
Chapter 5 14
Function execution
5. Parameter passing
▪ Parameter is means by which functions are communicating and
passing data
▪ Parameters are either Actual parameter or Formal Parameters
Chapter 5 15
The variable or expression corresponding
to a formal parameter that appears in
the function or method call in the calling
environ
A variable and its type as they
appear in the prototype of the
function or method.
Cont’d . . .
Chapter 5 16
Cont’d . . .
Chapter 5 17
Value Type Vs. Reference Type
Cont’d . . .
Parameter passing
by Value Vs. by Reference
Chapter 5 18
Cont’d . . .
Parameter passing by Value Vs. by Reference
Chapter 5 19
call by value call by reference
1
This method copy original
value into function as a
arguments.
This method copy address of
arguments into function as a
arguments.
2
Changes made to the
parameter inside the function
have no effect on the
argument.
Changes made to the parameter
affect the argument. Because address
is used to access the actual argument.
3
Actual and formal arguments
will be created in different
memory location
Actual and formal arguments will be
created in same memory location
Note: By default, C++ uses call by value to pass arguments.
Cont’d . . .
20
Example 1:
swapping two numbers
Chapter 5
21
Cont’d . . .
Chapter 5
22
Example 2
Cont’d . . .
Chapter 5
23
Example 2 . . . .
Cont’d . . .
Chapter 5
6. Default Arguments
 In C++ programming, we can provide default values for
function parameters.
 If a function with default arguments is called without passing
arguments, then the default parameters are used.
 However, if arguments are passed while calling the function,
the default arguments are ignored.
Chapter 5 24
Cont’d . . .
▪ Example 1
Chapter 5 25
Cont’d . . .
▪ Example 2
Chapter 5 26
Cont’d . . .
Things to Remember
 Once we provide a default value for a parameter, all
subsequent parameters must also have default values.
 For example:
 If the default arguments are provided in the function
definition instead of the function prototype, then the
function must be defined before the function call
Chapter 5 27
7. Function Overloading
• In C++, two functions can have the same name if the number
and/or type of arguments passed is different.
• These functions having the same name but different
arguments are known as overloaded functions.
• For example:
Chapter 5 28
Cont’d . . .
Example
Chapter 5 29
Cont’d . . .
▪ Example
Chapter 5 30
8. Revision on variable scope
▪ The scope of a variable is the portion of the program where the
variable is valid or "known".
Chapter 5 31
Cont’d . . .
▪ What is the output of the following code fragment?
Chapter 5 32
Output:
9. Inline function
▪ If a function is inline, the compiler places a copy of the code
of that function at each point where the function is called.
▪ To make any function inline function just preceded that
function with inline keyword.
Chapter 5
33
Cont’d . . .
Why use Inline function
▪ Whenever we call any function many time then, it take a lot of
extra time in execution of series of instructions such as saving
the register, pushing arguments, returning to calling function.
▪ For solve this problem in C++ introduce inline function.
▪ The main advantage of inline function is it make the program
faster.
▪ Example
Chapter 5
34
10. Recursive function
▪ A function that calls itself is
known as a recursive
function.
▪ The technique is known as
recursion.
Chapter 5 35
Function call
Recursive call
Cont’d . . .
▪ Example:
factorial finder
function
Chapter 5 36
10. Function with Array
(a) Calling function with array element
▪ Indexed variables can be arguments to functions
▪ Example: If a program contains these declaration
int i, n, a[10];
void my_function(int n);
▪ An array elements a[0] through a[9] are of type int, and
calling the function as follow is legal:
my_function( a[ 0 ] );
my_function( a[ 3 ] );
my_function( a[ i ] );
Note:
 In the same it works for 2D array and string
Chapter 5 37
Cont’d . . .
(b) Array as formal parameter
▪ An entire array can be used as a formal parameter
▪ Such a parameter is called an array parameter
▪ It is neither a call-by-value nor a call-by-reference parameter
▪ However, behave much like call-by-reference parameters
▪ An array parameter is indicated using empty brackets or with
array size in the parameter list
void fill_up(int a[ ], int size); or
void fill_up(int a[5 ], int size);
• Note:
 Because a function does not know the size of an array argument, the
programmer should include a formal parameter that specifies the size
of the array as shown in the example above
Chapter 5 38
Cont’d . . .
Example 1: passing 1D arrays to function
Chapter 5 39
Function declaration:
To receive an array of int, arr[]
as argument
Cont’d . . .
Passing arrays to function ……
40
Chapter 5
Cont’d . . .
(c) Returning an Array (is it possible?)
▪ Recall that functions can return a value (single data
element) of type int, double, char, . . .
▪ Because array consist a set of the same type data
elements, functions cannot return array.
▪ However, an individual array element (single array
element specified by index) can be returned.
▪ For example:
Chapter 5 41
int myFunc(){
int myArray[10];
- - - - --
return myArray; //invalid
}
//instead this is valid
return myArray[1];
Cont’d . . .
Example 2: Passing 2D array to function
Chapter 5 42
Note:
 With 2D arrays, You can
specify both dimensions
 However, the first
dimension (number of
rows) may be omitted, like
you see on the
Read2Array() function
 But the second dimension
(number of columns)
cannot be omitted.
Cont’d . . .
2D array as
parameter
example …
Chapter 5 43
Cont’d . . .
Example 3:
 Passing string to
function as
argument
Chapter 5 44
Summary of Function
Chapter 5 45
Reading Resources/Materials
Chapter 9 & 10:
✔ Diane Zak; An Introduction to Programming with C++ (8th
Edition), 2016 Cengage Learning
Chapter 5:
✔ Walter Savitch; Problem Solving With C++ [10th edition,
University of California, San Diego, 2018
Chapter 6:
✔ P. Deitel , H. Deitel; C++ how to program, 10th edition,
Global Edition (2017)
46
Chapter 5
Thank You
For Your Attention!!
47

More Related Content

PDF
Nire lehen koadernoa euskaraz
 
PDF
Ortografia ts tx tz
PPTX
Great Indian Mathematicians
PDF
Bidezko merkataritza. Zer da?
DOC
Tic tac toe game code
PDF
3. maila euskara 1 gaia santillana
PDF
Aroen eskema
ODP
Historiaurrea eta Historia
Nire lehen koadernoa euskaraz
 
Ortografia ts tx tz
Great Indian Mathematicians
Bidezko merkataritza. Zer da?
Tic tac toe game code
3. maila euskara 1 gaia santillana
Aroen eskema
Historiaurrea eta Historia

Similar to Chapter 5 - Modular Programming.pdf (20)

PPTX
Chapter 6 - Modular Programming- in C++.pptx
PPTX
Chapter One Function.pptx
DOCX
Functions assignment
PDF
Chapter 1. Functions in C++.pdf
PDF
Chapter_1.__Functions_in_C++[1].pdf
PPTX
CHAPTER THREE FUNCTION.pptx
PPTX
Chapter 1 (2) array and structure r.pptx
PDF
PPTX
Functions in C++
PDF
Functions in C++.pdf
PDF
All chapters C++ - Copy.pdfyttttttttttttttttttttttttttttt
PPTX
Functions and modular programming.pptx
PPT
Material 3 (4).ppt this ppt is about the
PPTX
Functions1
PPT
Chapter 1.ppt
PPT
16717 functions in C++
 
PPTX
Unit_5Functionspptx__2022_12_27_10_47_17 (1).pptx
PPTX
6. Functions in C ++ programming object oriented programming
PDF
(3) cpp procedural programming
PPTX
C++_Functions_Detailed_Presentation.pptx
Chapter 6 - Modular Programming- in C++.pptx
Chapter One Function.pptx
Functions assignment
Chapter 1. Functions in C++.pdf
Chapter_1.__Functions_in_C++[1].pdf
CHAPTER THREE FUNCTION.pptx
Chapter 1 (2) array and structure r.pptx
Functions in C++
Functions in C++.pdf
All chapters C++ - Copy.pdfyttttttttttttttttttttttttttttt
Functions and modular programming.pptx
Material 3 (4).ppt this ppt is about the
Functions1
Chapter 1.ppt
16717 functions in C++
 
Unit_5Functionspptx__2022_12_27_10_47_17 (1).pptx
6. Functions in C ++ programming object oriented programming
(3) cpp procedural programming
C++_Functions_Detailed_Presentation.pptx
Ad

More from KirubelWondwoson1 (6)

PDF
00 C++ For Engineers and Scientists.pdf
PDF
Chapter 4 (Part I) - Array and Strings.pdf
PDF
Chapter 1 - Basic concepts of programming.pdf
PDF
Chapter 4 (Part II) - Array and Strings.pdf
PDF
Chapter 3 - Flow of Control Part II.pdf
PDF
Chapter 2 - Flow of Control Part I.pdf
00 C++ For Engineers and Scientists.pdf
Chapter 4 (Part I) - Array and Strings.pdf
Chapter 1 - Basic concepts of programming.pdf
Chapter 4 (Part II) - Array and Strings.pdf
Chapter 3 - Flow of Control Part II.pdf
Chapter 2 - Flow of Control Part I.pdf
Ad

Recently uploaded (20)

PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
Pharma ospi slides which help in ospi learning
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PPTX
Cell Structure & Organelles in detailed.
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PPTX
Cell Types and Its function , kingdom of life
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
Complications of Minimal Access Surgery at WLH
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PPTX
Week 4 Term 3 Study Techniques revisited.pptx
O5-L3 Freight Transport Ops (International) V1.pdf
Pharma ospi slides which help in ospi learning
Renaissance Architecture: A Journey from Faith to Humanism
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
FourierSeries-QuestionsWithAnswers(Part-A).pdf
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
STATICS OF THE RIGID BODIES Hibbelers.pdf
Microbial disease of the cardiovascular and lymphatic systems
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
102 student loan defaulters named and shamed – Is someone you know on the list?
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Supply Chain Operations Speaking Notes -ICLT Program
Cell Structure & Organelles in detailed.
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Cell Types and Its function , kingdom of life
human mycosis Human fungal infections are called human mycosis..pptx
Abdominal Access Techniques with Prof. Dr. R K Mishra
Complications of Minimal Access Surgery at WLH
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Week 4 Term 3 Study Techniques revisited.pptx

Chapter 5 - Modular Programming.pdf

  • 1. Fundamentals of Computer Programming Chapter 5 Modular Programming (Function in C++) Chere L. (M.Tech) Lecturer, SWEG, AASTU 1
  • 2. Outline ▪ Introduction to modular programming ▪ Function declaration and definition ▪ Calling a function and Return types ▪ Function parameters (Value Vs. Reference) ▪ Parameter Passing ✔ by value ✔ by reference ▪ Default arguments ▪ Function Overloading ▪ Scope of variables (revision) ▪ Special functions (recursive functions, inline functions) ▪ Array in function (array as parameter, return array, call with array) Chapter 5 2
  • 3. 1. Introduction Modular Programming Modular programming  Programming approach in a complex problem breaking down in to smaller manageable pieces  The design of a program into individual components (modules) that can be programmed and tested independently.  It is a requirement for effective development and maintenance of large programs and projects  Procedures of a common functionality are grouped together into separate modules.  A program therefore no longer consists of only one single part  It is now divided into several smaller parts which interact and which form the whole program. Chapter 5 3
  • 4. Cont’d . . . Modular program  A program consisting of interrelated segments (or modules) arranged in a logical and understandable form  Modules in C++ can be classes or functions Why Modular programming?  Easy to write a correct small function  Code Re-usability – Write once and use multiple times  Code optimization – No need to write lot of code  Maintainability – Easily to debug, maintain/modify the program  Understandability – Easy to read, write and debug a function Chapter 5 4
  • 5. 2. The concepts of Function Functions  A function is a block of code (subprogram) that performs a specific task.  Complicated tasks should be broken down into multiple functions.  Each can be called in turn when it needed  Note: – Every C++ program has at least one function, main(). Chapter 5 5
  • 6. Cont’d . . .  A function can Accepts an input, act on data (process the input) and return a value (produces an output).  A function’s processing is encapsulated and hidden within the function Chapter 5 6
  • 7. Cont’d . . . Types of Functions Chapter 5 7
  • 8. 3. Function declaration and definition Components of a function  Function name  Function arguments (parameters)  Function body  Return type Creation of a function ▪ Function declaration  The process of tells the compiler about a function name.  Also called function prototype creation ▪ Function definition  Give body of function (i.e. write logic inside function body). Chapter 5 8
  • 9. Cont’d . . . There are three ways to declare a function:  Write your prototype into a separate file, and then use the #include directive to include it in your program.  Write the prototype in side your program before the main() function.  Define the function before it is called by any other function.  The definition act as its own declaration. ▪ Declaration syntax: ▪ Definition syntax: Chapter 5 9
  • 10. Cont’d . . . Chapter 5 10 ▪ A value which is pass in function at the time of calling of function ▪ It is like a placeholder. ▪ It is optional. ▪ Parameter identifier is also optional ▪ The collection of statements ▪ A function may return a value. ▪ It refers to the data type of the value the function returns. ▪ It is optional (void). ▪ The name of function it is decided by programmer ▪ Should be meaningful valid identifier ▪ Value returned by the function ▪ Single literal or expression
  • 11. Cont’d . . . Function Header  First line of a function, which contains:  The type of data returned by the function (if any)  The name of the function  The type of data that must be passed into the function when it is invoked (if any) Chapter 5 11
  • 12. Cont’d . . . Chapter 5 12 Examples
  • 13. 4. Function calling, execution and return Chapter 5 13 Function calling  Syntax : func_name(parameters ); or Variable = func_name(parameters); Function return  Syntax : return value/variable; or return expression;
  • 14. Cont’d . . . Chapter 5 14 Function execution
  • 15. 5. Parameter passing ▪ Parameter is means by which functions are communicating and passing data ▪ Parameters are either Actual parameter or Formal Parameters Chapter 5 15 The variable or expression corresponding to a formal parameter that appears in the function or method call in the calling environ A variable and its type as they appear in the prototype of the function or method.
  • 16. Cont’d . . . Chapter 5 16
  • 17. Cont’d . . . Chapter 5 17 Value Type Vs. Reference Type
  • 18. Cont’d . . . Parameter passing by Value Vs. by Reference Chapter 5 18
  • 19. Cont’d . . . Parameter passing by Value Vs. by Reference Chapter 5 19 call by value call by reference 1 This method copy original value into function as a arguments. This method copy address of arguments into function as a arguments. 2 Changes made to the parameter inside the function have no effect on the argument. Changes made to the parameter affect the argument. Because address is used to access the actual argument. 3 Actual and formal arguments will be created in different memory location Actual and formal arguments will be created in same memory location Note: By default, C++ uses call by value to pass arguments.
  • 20. Cont’d . . . 20 Example 1: swapping two numbers Chapter 5
  • 21. 21 Cont’d . . . Chapter 5
  • 22. 22 Example 2 Cont’d . . . Chapter 5
  • 23. 23 Example 2 . . . . Cont’d . . . Chapter 5
  • 24. 6. Default Arguments  In C++ programming, we can provide default values for function parameters.  If a function with default arguments is called without passing arguments, then the default parameters are used.  However, if arguments are passed while calling the function, the default arguments are ignored. Chapter 5 24
  • 25. Cont’d . . . ▪ Example 1 Chapter 5 25
  • 26. Cont’d . . . ▪ Example 2 Chapter 5 26
  • 27. Cont’d . . . Things to Remember  Once we provide a default value for a parameter, all subsequent parameters must also have default values.  For example:  If the default arguments are provided in the function definition instead of the function prototype, then the function must be defined before the function call Chapter 5 27
  • 28. 7. Function Overloading • In C++, two functions can have the same name if the number and/or type of arguments passed is different. • These functions having the same name but different arguments are known as overloaded functions. • For example: Chapter 5 28
  • 29. Cont’d . . . Example Chapter 5 29
  • 30. Cont’d . . . ▪ Example Chapter 5 30
  • 31. 8. Revision on variable scope ▪ The scope of a variable is the portion of the program where the variable is valid or "known". Chapter 5 31
  • 32. Cont’d . . . ▪ What is the output of the following code fragment? Chapter 5 32 Output:
  • 33. 9. Inline function ▪ If a function is inline, the compiler places a copy of the code of that function at each point where the function is called. ▪ To make any function inline function just preceded that function with inline keyword. Chapter 5 33
  • 34. Cont’d . . . Why use Inline function ▪ Whenever we call any function many time then, it take a lot of extra time in execution of series of instructions such as saving the register, pushing arguments, returning to calling function. ▪ For solve this problem in C++ introduce inline function. ▪ The main advantage of inline function is it make the program faster. ▪ Example Chapter 5 34
  • 35. 10. Recursive function ▪ A function that calls itself is known as a recursive function. ▪ The technique is known as recursion. Chapter 5 35 Function call Recursive call
  • 36. Cont’d . . . ▪ Example: factorial finder function Chapter 5 36
  • 37. 10. Function with Array (a) Calling function with array element ▪ Indexed variables can be arguments to functions ▪ Example: If a program contains these declaration int i, n, a[10]; void my_function(int n); ▪ An array elements a[0] through a[9] are of type int, and calling the function as follow is legal: my_function( a[ 0 ] ); my_function( a[ 3 ] ); my_function( a[ i ] ); Note:  In the same it works for 2D array and string Chapter 5 37
  • 38. Cont’d . . . (b) Array as formal parameter ▪ An entire array can be used as a formal parameter ▪ Such a parameter is called an array parameter ▪ It is neither a call-by-value nor a call-by-reference parameter ▪ However, behave much like call-by-reference parameters ▪ An array parameter is indicated using empty brackets or with array size in the parameter list void fill_up(int a[ ], int size); or void fill_up(int a[5 ], int size); • Note:  Because a function does not know the size of an array argument, the programmer should include a formal parameter that specifies the size of the array as shown in the example above Chapter 5 38
  • 39. Cont’d . . . Example 1: passing 1D arrays to function Chapter 5 39 Function declaration: To receive an array of int, arr[] as argument
  • 40. Cont’d . . . Passing arrays to function …… 40 Chapter 5
  • 41. Cont’d . . . (c) Returning an Array (is it possible?) ▪ Recall that functions can return a value (single data element) of type int, double, char, . . . ▪ Because array consist a set of the same type data elements, functions cannot return array. ▪ However, an individual array element (single array element specified by index) can be returned. ▪ For example: Chapter 5 41 int myFunc(){ int myArray[10]; - - - - -- return myArray; //invalid } //instead this is valid return myArray[1];
  • 42. Cont’d . . . Example 2: Passing 2D array to function Chapter 5 42 Note:  With 2D arrays, You can specify both dimensions  However, the first dimension (number of rows) may be omitted, like you see on the Read2Array() function  But the second dimension (number of columns) cannot be omitted.
  • 43. Cont’d . . . 2D array as parameter example … Chapter 5 43
  • 44. Cont’d . . . Example 3:  Passing string to function as argument Chapter 5 44
  • 46. Reading Resources/Materials Chapter 9 & 10: ✔ Diane Zak; An Introduction to Programming with C++ (8th Edition), 2016 Cengage Learning Chapter 5: ✔ Walter Savitch; Problem Solving With C++ [10th edition, University of California, San Diego, 2018 Chapter 6: ✔ P. Deitel , H. Deitel; C++ how to program, 10th edition, Global Edition (2017) 46 Chapter 5
  • 47. Thank You For Your Attention!! 47