int r, x; int main(){ x = 2 + 2; abs(x); return r; } void abs(int y) { if (y >= 0) { r = y; return; } else { r = -y; return; } }