C Program GATE 2019-6 Jayesh Umre 2/06/2022 GATE C No comments C Program : GATE 2019Consider 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: Related Posts:C Program GATE 2018 -8Consider the following C code. Assume that unsigned long int type length is 64 bits.unsigned long int fun(unsigned long int&n… Read MoreC Program GATE 2018 -7Consider the following C program:#include<stdio.h> void fun1(char *s1, char *s2){ char&nbs… Read MoreC Program GATE 2019-2C Program : GATE 2019Consider the following C function.void convert(int n){ if(n<0) … Read MoreC Program GATE 2019-3C Program : GATE 2019Consider the following C program:#include <stdio.h>int r(){static int num=7;return num--;}int … Read MoreC Program GATE 2019-6C Program : GATE 2019Consider the following C program:#include <stdio.h>int jumble(int x, int y){x=… Read MoreC Program GATE 2019-1C Program : GATE 2019Consider the following C program #include <stdio.h>int main(){ int arr[]={1,2,3,4,5,6,7,8,9,0,1,2,… Read MoreC Program GATE 2018 -5Consider the following C program.#include <stdio.h>struct Ournode{ char x,y,z;};int main(){ &nbs… Read MoreC Program GATE 2019 -4C Program : GATE 2019Consider the following C program:#include <stdio.h> int main(){float sum = 0.0, j =… Read More
Post a Comment
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.