- the user defines
- built-in functions.

Simple C++ program to demonstrate User define function
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#include <iostream> using namespace std; int sum (int, int); int main(){ cout<<sum(4,7); cout<<"Welcome to T4Tutorials.com"<<endl; return 0; } int sum (int num1, int num2) { int num3 = num1+num2; return num3; } |
Dry Run and Explanation of User define function with SMT


Advantages of user-defined functions- C++
- User-defined functions help us to divide a big program into smaller parts.
- The smaller parts of the program have the following benefits;
- Easy to understand.
- Easy to modify.
- Easy to maintain.
- Easy to debug.
- Call by value
- Call by reference
User define function with an array
