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
Technical Interview Questions And Answers 007. Technical interview question: Give the output of the following code void main() { if(printf("KodeGod")) printf("Awesome"); else printf("Amazing"); }Prashant ChaudhariMarch 7, 2018
Technical Interview Questions And Answers 006. Technical interview question: Give the output of the following code #include<string.h> void main() { clrscr(); printf("%d%d",sizeof("kodegod"),strlen("kodegod")); getch(); }Prashant ChaudhariMarch 6, 2018
Technical Interview Questions And Answers 005. Technical interview question: Give the output of the following code void main() { printf("%s","kode" "god" ".com"); }Prashant ChaudhariFebruary 26, 2018
Technical Interview Questions And Answers 004. Technical interview question: Swap two numbers without using a third variable a = a + b; b = a - b; a = a - b;…Prashant ChaudhariFebruary 25, 2018
Technical Interview Questions And Answers 003. Technical interview question: Check number is even or odd without using arithmetic or relational operator #include<stdio.h> int main() { int number; printf("Please input an integer number: "); scanf("%d", &number); //check…Prashant ChaudhariFebruary 24, 2018
Technical Interview Questions And Answers 002. Technical interview question: Print your name 5 times without a loop #include<stdio.h> void printstring(char* name, int count) { printf("%d : %s\n",count+1,name); count+=1; if(countPrashant ChaudhariFebruary 23, 2018