Technical Interview Questions And Answers 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 ChaudhariMarch 17, 2018
Technical Interview Questions And Answers 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 ChaudhariMarch 16, 2018
Technical Interview Questions And Answers 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 ChaudhariMarch 15, 2018
Technical Interview Questions And Answers 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 ChaudhariMarch 14, 2018
Technical Interview Questions And Answers 013. Technical interview question: Give the output of this code int main() { int i; for(i=0;iPrashant ChaudhariMarch 13, 2018
Technical Interview Questions And Answers 012. Technical interview question: Check two numbers are equal without using arithmetic or relational operators int main() { int x = 10; int y = 10; if (!(x ^ y))…Prashant ChaudhariMarch 12, 2018
Technical Interview Questions And Answers 011. Technical interview question: Give the output of the following code snippet int main() { int number = 147; //Any number. int res; if(number) res = number…Prashant ChaudhariMarch 11, 2018
Technical Interview Questions And Answers 010. Technical interview question: Give the output of the following code void main() { while(a='0') { printf("kodegod.com"); } }Prashant ChaudhariMarch 10, 2018
Technical Interview Questions And Answers 009. Technical interview question: Give the output of the following code void main() { while(a=0) { printf("kodegod.com"); } }Prashant ChaudhariMarch 9, 2018
Technical Interview Questions And Answers 008. Technical interview question: Give the output of the following code void main() { while(1) { printf("kodegod.com"); } }Prashant ChaudhariMarch 8, 2018