Your task is to define both:
SQUARE(x)
x
In main(), the program will read an integer n and call both versions to print:
main()
Macro Square: <result> Inline Square: <result>
Example Input:
5
Output:
Macro Square: 25 Inline Square: 25
Input:
-3
Macro Square: 9 Inline Square: 9
Test Cases
Test Results
Input
Expected Output