Explanation For Technical Interview Questions 030. Technical interview question: Give the output the following code #include<stdio.h> int main() { static int i; for(++i;++i;++i) { printf("%d ",i); if(i==4) break; } return…Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 029. Technical interview question: Give the output the following code int main() { int i, j; i=j=2,3; while(--i&&j++) printf("%d %d", i, j); return 0; }Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 028. Technical interview question: Give the output the following code int main() { int x=011,i; for(i=0; i<x; i+=3) { printf("KodeGod.com "); continue; printf("Learn!"); } return 0; }Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 027. Technical interview question:Give the output the following code #include<stdio.h> int main() { int i = 2; int j = ++i + i; printf("%d\n",…Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 026. Technical interview question: Give the output the following code #include<stdio.h> int main() { int a = 10, b = 10; if (a = 5)…Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 025. Technical interview question: Give the output the following code #include<stdio.h> int main() { int a = 1, b = 1, c; c = a++-++b;…Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 024. Technical interview question: Give the output the following code #include<stdio.h> main() { int a; if (a=printf("HelloWorld")+4) printf("%d", a); }Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 023. Technical interview question: Find the sum of digits using single statement #include<stdio.h> int sum(int x) { int s; for( s=0 ; x>0 ; s+=x%10 , x/=10);…Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 022. Technical interview question: Give the output of the following code int main() { int arr = {2}; printf("%d", 0); return 0; }Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 021. Technical interview question: Give the output of the following code int main() { int i = 0; int j = i+++1; printf("%d\n", j); }Prashant ChaudhariNovember 21, 2018