Which of the following statements about the given program is correct?
int fun(int, int);
int main()
{
int x=fun(2,3);
}
fun (int x, int y) //Line 7
{
int x; //Line 8
x = 20;
return x; //Line 10
}
Reveal answer
Fill a bubble to check yourself