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
Explanation For Technical Interview Questions 016. Technical interview question: Give the output of the following code int main() { int a=2,b=7,c=10; c=a==b; printf("%d", c) return 0; }Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 015. Technical interview question: Give the output of the following code int main() { int i=2,j=2; while(i+1? --i : j++) printf("%d", i); return 0; }Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 014. Technical interview question: Check number is even or odd without using arithmetic or relational operator in detail int main() { int number; printf("Please input an integer number: "); scanf("%d", &number); (number &…Prashant ChaudhariNovember 21, 2018
Explanation For Technical Interview Questions 013. Technical interview question: Give the output of this code int main() { int i; for(i=0;iPrashant ChaudhariNovember 21, 2018