CJCoding With Joseph

Function: Multiply Two Numbers

Write a function multiply(int a, int b) that returns the product of a and b. Call it with 7 and 8 and print the result:

56

Print with printf and %d. Do not hardcode 56.

Expected Output:

56
Topics:
Functions/Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.