int main() {
int x = -12;
if (x<0) { x=-x; } else {}
printf("%i",x);
return 0;
}
is equivalent to
void abs() { // DEFINITION //
int x = -12;
if (x<0) { x=-x; } else {}
printf("%i",x);
}
int main() {
abs(); // CALL //
return 0;
}