...
/Challenge: Calculate the Area of a Rectangle Using Pointers
Challenge: Calculate the Area of a Rectangle Using Pointers
Test your knowledge by solving a challenge in this lesson.
We'll cover the following...
Problem statement
Your task is to write a function area
. In the function parameter, you will pass the three pointers of type int
in its input parameters.
Your function should calculate the area of the rectangle and store the output in the result
...