We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
A. return x > 0 ? x : -x;
return x > 0 ? x : -x;
B. return 0;
return 0;
C. return -x;
return -x;