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
Technical Interview Questions And Answers 020. Technical interview question: Convert time in seconds to hours int main() { long sec, hr, min, t; // Declaration of variables printf("\n Enter time…Prashant ChaudhariMarch 20, 2018
Technical Interview Questions And Answers 019. Technical interview question: Give the output of the following code int main() { static int var = 5; printf("%d",var--); if(var) main(); }Prashant ChaudhariMarch 19, 2018
Technical Interview Questions And Answers 018. Technical interview question: Give the output of the following code main() { float me = 1.1; double you = 1.1; if(me==you) printf("Values are equal"); else…Prashant ChaudhariMarch 18, 2018