CJCoding With Joseph

Multiply Two Numbers

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

42

Expected Output:

42
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.