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
Explanation For Technical Interview Questions 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 ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 019. Technical interview question: Give the output of the following code int main() { static int var = 5; printf("%d",var--); if(var) main(); }Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 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 ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 017. Technical interview question: Give the output of the following code #include<stdio.h> int main() { printf("%d %d %d", sizeof(3.14), sizeof(3.14f), sizeof(3.14L)); return 0; }Prashant ChaudhariNovember 21, 2018