✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the Expected Output
void modify(int x) {x = x + 10;
}
int main() {
int x= 5;
modify(x);
x=15;
cout << x
return 0;
}