Information

Contact Contact link
Deadline No deadline
Submission limit No limitation

Sign in

[S1] Absolute value

The absolute value of a number is defined as |n| = n if n >= 0, |n| = -n else.


Absolute value

Write the body of the function absval returning the absolute value of i.

int absval(int i) {