Question
What is wrong with the following method call?
int displayValue (x);
int displayValue (x);
Answers
oobleck
It's not a call, but a declaration (also incorrect).
For a call, you'd have something like
y = displayValue (x);
For a call, you'd have something like
y = displayValue (x);