Technical Interview Questions And Answers 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 ChaudhariMarch 30, 2018
Technical Interview Questions And Answers 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 ChaudhariMarch 29, 2018
Technical Interview Questions And Answers 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 ChaudhariMarch 28, 2018
Technical Interview Questions And Answers 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 ChaudhariMarch 27, 2018
Technical Interview Questions And Answers 026. Technical interview question: Give the output the following code #include<stdio.h> int main() { int a = 10, b = 10; if (a = 5)…Prashant ChaudhariMarch 26, 2018
Technical Interview Questions And Answers 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 ChaudhariMarch 25, 2018
Technical Interview Questions And Answers 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 ChaudhariMarch 24, 2018
Technical Interview Questions And Answers 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 ChaudhariMarch 23, 2018
Technical Interview Questions And Answers 022. Technical interview question: Give the output of the following code int main() { int arr = {2}; printf("%d", 0); return 0; }Prashant ChaudhariMarch 22, 2018
Technical Interview Questions And Answers 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 ChaudhariMarch 21, 2018