C Program GATE 2019-6

C Program : GATE 2019

Consider the following C program:

#include <stdio.h>

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 ________. 

Share:

Post a Comment

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.