Explanation For Technical Interview Questions 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 ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 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 ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 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 ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 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 ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 052. Technical interview question: Give the output of following code int main(void) { int a = 10, b = 20, c = 30; printf("\n %d..…Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 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 ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 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 ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 049. Technical interview question: Give the output of following code int main() { int i = 0; int x = i++, y = ++i; printf("%d…Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 048. Technical interview question: Give the output of following code int main() { int a = 10, b = 5, c = 5; int d;…Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 047. Technical interview question: Give the output of following code void main() { int const k = 5; k++; printf("k is %d", k); }Prashant ChaudhariNovember 21, 2018