Technical Interview Questions And Answers 060. Technical interview question: Sum of two integers without using + operator int main() { int a = 10; int b = 10; int sum = -…Prashant ChaudhariApril 29, 2018
Technical Interview Questions And Answers 059. Technical interview question: Give the output of following code struct { int i; float ft; } x; int main() { x.i = 4; x.ft…Prashant ChaudhariApril 28, 2018
Technical Interview Questions And Answers 058. Technical interview question: Give the output of following code void fun(int); int main() { int a = 3; fun(a); return 0; } void fun(int…Prashant ChaudhariApril 27, 2018
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