Q. What will be the output of the following C++ code?
Code:#include <iostream>
using namespace std;
void fun(int x, int y){
x = 20;
y = 10;
}
int main() {
int x = 10;
fun (x, x);
cout << x;
return 0;
}
β
Correct Answer: (A)
10