Exercise 1: Function To Check Sum
Let's write a function that computes and returns the sum of integers using the pass by value method.
We'll cover the following...
Problem Statement
In this exercise, you have to write a function checkSum
that takes two integers num1
and num2
, calculates their sum ...