CJCoding With Joseph

Square a Number

Write a function int square(int n) that returns n multiplied by itself.

The provided program calls your function and prints the result. For square(5) it prints 25.

Expected Output:

25
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.