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
Technical Interview Questions And Answers 047. Technical interview question: Give the output of following code void main() { int const k = 5; k++; printf("k is %d", k); }Prashant ChaudhariApril 16, 2018
Technical Interview Questions And Answers 046. Technical interview question: Give the output of following code int main() { char *str = "x"; char c = 'x'; char arr; arr =…Prashant ChaudhariApril 15, 2018
Technical Interview Questions And Answers 045. Technical interview question: Give the output of following code void main(){ char c=125; c=c+10; printf("%d", c); }Prashant ChaudhariApril 14, 2018
Technical Interview Questions And Answers 044. 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, j); return 0; }Prashant ChaudhariApril 13, 2018
Technical Interview Questions And Answers 043. Technical interview question: Give the output of following code #include<stdio.h> int main(){ char str; printf(" %d ",printf("kodegod")); return 0; }Prashant ChaudhariApril 12, 2018
Technical Interview Questions And Answers 042. Technical interview question: Give the output of following code #include<stdio.h> int main() { int a = 5; printf("%dkodegod"+2, a); return 0; }Prashant ChaudhariApril 11, 2018
Technical Interview Questions And Answers 041. Technical interview question: Give the output of following code static struct student { int a; int b; } struct_var {2,3}; int main() { printf("%d…Prashant ChaudhariApril 10, 2018