Technical Interview Questions And Answers 057. Technical interview question: Give the output of following code int i; int fun(); int main() { while(i) { fun(); main(); } printf("Hello\n"); return 0;…Prashant ChaudhariApril 26, 2018
Technical Interview Questions And Answers 056. Technical interview question: Give the output of following code int main(){ float x; x=0.35==3.5/10; printf("%f", x); return 0; }Prashant ChaudhariApril 25, 2018
Technical Interview Questions And Answers 055. Technical interview question: Give the output of following code #include<stdio.h> int sq(int); int main(){ int a=1,x; x = sq (++a) + sq(a++) + sq(a++);…Prashant ChaudhariApril 24, 2018
Technical Interview Questions And Answers 054. Technical interview question: Give the output of following code int main(){ int arr={10,20,30}; int x=0; x = ++arr + ++x + arr; printf("%d ",x);…Prashant ChaudhariApril 23, 2018
Technical Interview Questions And Answers 053. Technical interview question: Give the output of following code int main(void) { char *ptr = "Linux"; printf("\n \n",*ptr++); printf("\n \n",*ptr); return 0; }Prashant ChaudhariApril 22, 2018
Technical Interview Questions And Answers 052. Technical interview question: Give the output of following code int main(void) { int a = 10, b = 20, c = 30; printf("\n %d..…Prashant ChaudhariApril 21, 2018
Technical Interview Questions And Answers 051. Technical interview question: Give the output of following code #include<stdio.h> int main(){ int i=5,j; j = i++ + ++i + i++; printf("%d %d", i,…Prashant ChaudhariApril 20, 2018
Technical Interview Questions And Answers 050. Technical interview question: Give the output of following code #include<stdio.h> void main() { int x = 97; int y = sizeof(x++); printf("X is %d",…Prashant ChaudhariApril 19, 2018
Technical Interview Questions And Answers 049. Technical interview question: Give the output of following code int main() { int i = 0; int x = i++, y = ++i; printf("%d…Prashant ChaudhariApril 18, 2018
Technical Interview Questions And Answers 048. Technical interview question: Give the output of following code int main() { int a = 10, b = 5, c = 5; int d;…Prashant ChaudhariApril 17, 2018