Home » Interview » Technology

What is the output of this program? #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; }

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!