Open In App
Related Articles

ISRO | ISRO CS 2015 | Question 79

Improve Article
Improve
Save Article
Save
Like Article
Like

Consider the following code fragment
void foo(int x, int y)
{
x+=y;
y+=x;
}
main()
{
int x=5.5;
foo(x,x);
}
What is the final value of x in both call by value and call by reference, respectively?
(A) 5 and 16
(B) 5 and 12
(C) 5 and 20
(D) 12 and 20


Answer: (C)

Explanation:

Quiz of this Question
Please comment below if you find anything wrong in the above post

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 05 Apr, 2018
Like Article
Save Article
Previous
Next
Similar Reads