Functions in C++

In this lesson, you will study functions and their types.

Introduction

Suppose you want to make juice for yourself. You will follow the following steps:

  1. Put fruits and water in a blender.
  2. Turn on the juicer.
  3. Enjoy the juice after 1 minute.

A function is like a blender that performs a specific action on some ingredients and returns a modified product. We can use the same blender to extract the juice of different fruits. ...