Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 3 out of 18 pages
Summary

Summary C++ FUNCTIONS

Document preview thumbnail
Preview 3 out of 18 pages

The document details the use of functions in C++, a cornerstone of structured programming. It covers function declaration, definition, and invocation, explaining return types and parameter passing (by value and by reference). Practical examples illustrate common uses, such as modularizing code and enhancing readability. The notes also discuss function overloading, recursion, and inline functions. Best practices for designing efficient, reusable functions are emphasized, highlighting their role in creating organized and maintainable code.

Content preview

ELITE TUTORING




C++ Functions
A function is a block of code that performs a specific task.

Suppose we need to create a program to create a circle and color it. We can
create two functions to solve this problem:

• a function to draw the circle

• a function to color the circle

Dividing a complex problem into smaller chunks makes our program easy to
understand and reusable.

There are two types of function:

1. Standard Library Functions: Predefined in C++
2. User-defined Function: Created by users




C++ User-defined Function
C++ allows the programmer to define their own function.

A user-defined function groups code to perform a specific task and that group
of code is given a name (identifier).

When the function is invoked from any part of the program, it all executes the
codes defined in the body of the function.

,ELITE TUTORING



C++ Function Declaration

The syntax to declare a function is:

returnType functionName (parameter1, parameter2,...) {
// function body
}


Here's an example of a function declaration.


// function declaration
void greet() {
cout << "Hello World";
}


Here,

• the name of the function is greet()

• the return type of the function is void

• the empty parentheses mean it doesn't have any parameters

• the function body is written inside {}




Calling a Function

In the above program, we have declared a function named greet() . To use
the greet() function, we need to call it.
Here's how we can call the above greet() function.

int main() {

// calling a function
greet();

, ELITE TUTORING




}




How Function works in C++




Example 1: Display a Text
#include <iostream>
using namespace std;

// declaring a function
void greet() {
cout << "Hello there!";
}

int main() {

// calling the function
greet();

return 0;
}

Output

Document information

Uploaded on
July 25, 2024
Number of pages
18
Written in
2023/2024
Type
Summary
$5.99

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Sold
0
Followers
1
Items
69
Last sold
-




Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions