Q147
What will be the output of the following C++ code? #include 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;
A.
10
AnswerB.
20
C.
compile time error
D.
30
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board