Asked by anonymous

What is wrong with the following method call?

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);
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions