SlideShare a Scribd company logo
1 of 47
Download to read offline
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

Similar to Chapter 5 - Modular Programming.pdf

U19CS101 - PPS Unit 4 PPT (1).ppt
U19CS101 - PPS Unit 4 PPT (1).pptU19CS101 - PPS Unit 4 PPT (1).ppt
U19CS101 - PPS Unit 4 PPT (1).pptManivannan837728
 
Basic information of function in cpu
Basic information of function in cpuBasic information of function in cpu
Basic information of function in cpuDhaval Jalalpara
 
Functions in c language
Functions in c language Functions in c language
Functions in c language tanmaymodi4
 
Functions in c language
Functions in c languageFunctions in c language
Functions in c languageTanmay Modi
 
c.p function
c.p functionc.p function
c.p functiongiri5624
 
Functions in c++, presentation, short and sweet presentation, and details of ...
Functions in c++, presentation, short and sweet presentation, and details of ...Functions in c++, presentation, short and sweet presentation, and details of ...
Functions in c++, presentation, short and sweet presentation, and details of ...Sar
 
unit3 part2 pcds function notes.pdf
unit3 part2 pcds function notes.pdfunit3 part2 pcds function notes.pdf
unit3 part2 pcds function notes.pdfJAVVAJI VENKATA RAO
 
CHAPTER THREE FUNCTION.pptx
CHAPTER THREE FUNCTION.pptxCHAPTER THREE FUNCTION.pptx
CHAPTER THREE FUNCTION.pptxGebruGetachew2
 
Module 3-Functions
Module 3-FunctionsModule 3-Functions
Module 3-Functionsnikshaikh786
 
User defined function in C.pptx
User defined function in C.pptxUser defined function in C.pptx
User defined function in C.pptxRhishav Poudyal
 

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

[ITP - Lecture 12] Functions in C/C++
[ITP - Lecture 12] Functions in C/C++[ITP - Lecture 12] Functions in C/C++
[ITP - Lecture 12] Functions in C/C++
 
C FUNCTIONS
C FUNCTIONSC FUNCTIONS
C FUNCTIONS
 
1.6 Function.pdf
1.6 Function.pdf1.6 Function.pdf
1.6 Function.pdf
 
U19CS101 - PPS Unit 4 PPT (1).ppt
U19CS101 - PPS Unit 4 PPT (1).pptU19CS101 - PPS Unit 4 PPT (1).ppt
U19CS101 - PPS Unit 4 PPT (1).ppt
 
Chapter 1.ppt
Chapter 1.pptChapter 1.ppt
Chapter 1.ppt
 
arrays.ppt
arrays.pptarrays.ppt
arrays.ppt
 
Basic information of function in cpu
Basic information of function in cpuBasic information of function in cpu
Basic information of function in cpu
 
Functions in c language
Functions in c language Functions in c language
Functions in c language
 
Functions in c language
Functions in c languageFunctions in c language
Functions in c language
 
c.p function
c.p functionc.p function
c.p function
 
Ch4 functions
Ch4 functionsCh4 functions
Ch4 functions
 
Function
Function Function
Function
 
Functions in c++, presentation, short and sweet presentation, and details of ...
Functions in c++, presentation, short and sweet presentation, and details of ...Functions in c++, presentation, short and sweet presentation, and details of ...
Functions in c++, presentation, short and sweet presentation, and details of ...
 
Ch9 Functions
Ch9 FunctionsCh9 Functions
Ch9 Functions
 
unit3 part2 pcds function notes.pdf
unit3 part2 pcds function notes.pdfunit3 part2 pcds function notes.pdf
unit3 part2 pcds function notes.pdf
 
Function C programming
Function C programmingFunction C programming
Function C programming
 
CHAPTER THREE FUNCTION.pptx
CHAPTER THREE FUNCTION.pptxCHAPTER THREE FUNCTION.pptx
CHAPTER THREE FUNCTION.pptx
 
Module 3-Functions
Module 3-FunctionsModule 3-Functions
Module 3-Functions
 
User defined function in C.pptx
User defined function in C.pptxUser defined function in C.pptx
User defined function in C.pptx
 
C++
C++C++
C++
 

More from KirubelWondwoson1

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

More from KirubelWondwoson1 (6)

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

Recently uploaded

Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentInMediaRes1
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Recently uploaded (20)

Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media Component
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 

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