Explanation For Technical Interview Questions 010. Technical interview question: Give the output of the following code void main() { while(a='0') { printf("kodegod.com"); } }Prashant ChaudhariMay 16, 2018
Explanation For Technical Interview Questions 009. Technical interview question: Give the output of the following code void main() { while(a=0) { printf("kodegod.com"); } }Prashant ChaudhariMay 15, 2018
Explanation For Technical Interview Questions 008. Technical interview question: Give the output of the following code void main() { while(1) { printf("kodegod.com"); } }Prashant ChaudhariMay 14, 2018
Explanation For Technical Interview Questions 007. Technical interview question: Give the output of the following code void main() { if(printf("KodeGod")) printf("Awesome"); else printf("Amazing"); }Prashant ChaudhariMay 13, 2018
Explanation For Technical Interview Questions 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 ChaudhariMay 12, 2018
Explanation For Technical Interview Questions 005. Technical interview question: Give the output of the following code void main() { printf("%s","kode" "god" ".com"); }Prashant ChaudhariMay 11, 2018
Explanation For Technical Interview Questions 004. Technical interview question: Swap two numbers without using a third variable a = a + b; b = a - b; a = a - b;…Prashant ChaudhariMay 10, 2018
Explanation For Technical Interview Questions 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 ChaudhariMay 9, 2018
Explanation For Technical Interview Questions 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 ChaudhariMay 8, 2018
Explanation For Technical Interview Questions 001. Technical interview questions: Print message without using semicolon Method 1 #include<stdio.h> int main() { if(printf("KodeGod\n")) { } } Method 2 #include<stdio.h> int main()…Prashant ChaudhariMay 7, 2018