Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lära Basics of Functions | Functions
Practice
Projects
Quizzes & Challenges
Quizzes
Challenges
/
C++ Intermediate | Mobile-Friendly

bookBasics of Functions

The function is a block of statements that runs when it is called. The world of programming cannot exist without functions since they:

  • are reusable.
  • can test a particular part of your code.
  • can be applied to a number of cases if you change the parameters.

Let’s go deep into it. For instance, you have decided to program the cat. It should say "meow!":

cout << "meow!" << endl;

Easy implementation. Repeating output will overload your code. However, what should we do if the cat must say meow twice or 20 times in different periods? In such a situation, we can use functions. To create a function, you need to specify the keyword void, the name of the function, followed by parentheses ():

void myFunc() {
    // code to be executed
}

Let's create the function sound() for the cat, which will print "meow!":

void sound() {
    cout << "meow!" << endl;
}
question mark

To create a function, you need to specify the keyword

Select the correct answer

Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

Avsnitt 4. Kapitel 1

Fråga AI

expand

Fråga AI

ChatGPT

Fråga vad du vill eller prova någon av de föreslagna frågorna för att starta vårt samtal

Suggested prompts:

Ställ mig frågor om detta ämne

Sammanfatta detta kapitel

Visa verkliga exempel

bookBasics of Functions

Svep för att visa menyn

The function is a block of statements that runs when it is called. The world of programming cannot exist without functions since they:

  • are reusable.
  • can test a particular part of your code.
  • can be applied to a number of cases if you change the parameters.

Let’s go deep into it. For instance, you have decided to program the cat. It should say "meow!":

cout << "meow!" << endl;

Easy implementation. Repeating output will overload your code. However, what should we do if the cat must say meow twice or 20 times in different periods? In such a situation, we can use functions. To create a function, you need to specify the keyword void, the name of the function, followed by parentheses ():

void myFunc() {
    // code to be executed
}

Let's create the function sound() for the cat, which will print "meow!":

void sound() {
    cout << "meow!" << endl;
}
question mark

To create a function, you need to specify the keyword

Select the correct answer

Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

Avsnitt 4. Kapitel 1
some-alt