Question: (Call by Value) Write a C program that reads two integer numbers from the standard input and calls a MyMult function. MyMult does the multiplication
(Call by Value) Write a C program that reads two integer numbers from the standard input and calls a MyMult function. MyMult does the multiplication of the two numbers and provides the result to the main(). [2 Marks] The prototype for MyMult is provided below: int MyMult(int, int); Note: DO NOT use the multiplication operator (*) for the multiplication in the function MyMult instead use a different method for performing the multiplication
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
