please answer fast
What will be the output of the following statements:
i. int a = 10, b=5;
a = a * ++a + --b;
ii. int x = 2, y = 3, z = 1,v;
v = x + --z + y++ + y;
Answers
Answered by
4
Answer:
the list and returns the resulting sorted list but it does not modify the original list so output is -
[12, 32, 65, 26, 80, 10]
hope it's help you!!!
Similar questions