Q. 27 Consider the following C program:
#include <stdio.h>intjumble(intx,inty) {x = 2 * x + y;returnx;}intmain() {intx = 2, y = 5;y = jumble(y, x);x = jumble(y, x);printf("%d\n", x);return0;}
The value printed by program is __________ .
Note: This was Numerical Type question.
(A) 26
(B) 2
(C) 5
(D) 12
Answer: (A)
Explanation:













