Vidyalelo
C++ Programming · Q147

Functions and Procedures in C++

Programming · C++ Programming · question 147

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
Answer
B.
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