Function
In this post we are going to what is function statement?
A function is a set of statements that take inputs, do some specific computation and produces output.
The idea is to put some commonly or repeatedly done task together and make a function so that instead of writing the same code again and again for different inputs, we can call the function.
Function is a very useful statement. In every programming language, whenever we want to repeat any set of program with different data or any condition and etc, at that time we can use function.
It's simple, aren't it?☺