GATE Computer Science (CS) 2019 Solved Papers

© examsiri.com
Question : 28 of 65
 
Marks: +1, -0
Consider the following C program:
#include
int jumble(int x, int y){
x=2*x+y;
return x;
}
int main(){
int x=2, y=5;
y=jumble(y,x);
x=jumble(y,x);
printf(“%d \n”, x);
return 0;
}

The value printed by the program is _______.
  • Your Answer:
Go to Question: