C Program GATE 2019-2
Related Posts:
C Program GATE 2018 -7Consider the following C program:#include<stdio.h> void fun1(char *s1, char *s2){ char&nbs… Read More
C Program GATE 2018 -5Consider the following C program.#include <stdio.h>struct Ournode{ char x,y,z;};int main(){ &nbs… Read More
C Program GATE 2019-2C Program : GATE 2019Consider the following C function.void convert(int n){ if(n<0) … Read More
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 More
C Program GATE 2019 -4C Program : GATE 2019Consider the following C program:#include <stdio.h> int main(){float sum = 0.0, j =… Read More
C 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 More
C Program GATE 2019-3C Program : GATE 2019Consider the following C program:#include <stdio.h>int r(){static int num=7;return num--;}int … Read More
C Program GATE 2019-6C Program : GATE 2019Consider the following C program:#include <stdio.h>int jumble(int x, int y){x=… 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.