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
Technical Interview Questions And Answers 040. Technical interview question: Give the output of following code int main() { int i = 5; int a = --i - --i - --i…Prashant ChaudhariApril 9, 2018
Technical Interview Questions And Answers 039. Technical interview question: Give the output of following code #include<stdio.h> int main() { while(!!7) printf("Hai"); return 0; }Prashant ChaudhariApril 8, 2018
Technical Interview Questions And Answers 038. Technical interview question: Give the output of following code int main() { int s = {'\0', '\0'}; int x = {'\0', '\0'}; int c…Prashant ChaudhariApril 7, 2018