Explanation For Technical Interview Questions 046. Technical interview question: Give the output of following code int main() { char *str = "x"; char c = 'x'; char arr; arr =…Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 045. Technical interview question: Give the output of following code void main(){ char c=125; c=c+10; printf("%d", c); }Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 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 ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 043. Technical interview question: Give the output of following code #include<stdio.h> int main(){ char str; printf(" %d ",printf("kodegod")); return 0; }Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 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 ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 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 ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 040. Technical interview question: Give the output of following code int main() { int i = 5; int a = --i - --i - --i…Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 039. Technical interview question: Give the output of following code #include<stdio.h> int main() { while(!!7) printf("Hai"); return 0; }Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 038. Technical interview question: Give the output of following code int main() { int s = {'\0', '\0'}; int x = {'\0', '\0'}; int c…Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 037. Technical interview question: Give the output of following code int main() { char arr1[]= "aptitude in c"; char arr2[]= "aptitude in c"; if(arr1 ==…Prashant ChaudhariNovember 21, 2018