Asked by anonymous
What is wrong with the following method call?
int displayValue (x);
int displayValue (x);
Answers
Answered by
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);
There are no AI answers yet. The ability to request AI answers is coming soon!
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.