Technical Interview Questions And Answers 041. Technical interview question: Give the output of following code static struct student { int a; int b; } struct_var {2,3}; int main() { printf("%d…Prashant ChaudhariApril 10, 2018
Technical Interview Questions And Answers 040. Technical interview question: Give the output of following code int main() { int i = 5; int a = --i - --i - --i…Prashant ChaudhariApril 9, 2018
Technical Interview Questions And Answers 039. Technical interview question: Give the output of following code #include<stdio.h> int main() { while(!!7) printf("Hai"); return 0; }Prashant ChaudhariApril 8, 2018
Technical Interview Questions And Answers 038. Technical interview question: Give the output of following code int main() { int s = {'\0', '\0'}; int x = {'\0', '\0'}; int c…Prashant ChaudhariApril 7, 2018
Technical Interview Questions And Answers 037. Technical interview question: Give the output of following code int main() { char arr1[]= "aptitude in c"; char arr2[]= "aptitude in c"; if(arr1 ==…Prashant ChaudhariApril 6, 2018
Technical Interview Questions And Answers 036. Technical interview question: Give the output of following code int main() { int x = 10; while( x --> 0 ) { printf("%d ",…Prashant ChaudhariApril 5, 2018
Technical Interview Questions And Answers 035. Technical interview question: Give the output of following code int main() { int i = 5; int a = --i + --i; printf("%d", a);…Prashant ChaudhariApril 4, 2018
Technical Interview Questions And Answers 034. Technical interview question: Give the output of following code #include<stdio.h> int main() { int a = 2, b = 2, c = 0, d…Prashant ChaudhariApril 3, 2018
Technical Interview Questions And Answers 033. Technical interview question: Give the output of following code int main() { int a; a= (1, 2, 3); printf("%d", a); return 0; }Prashant ChaudhariApril 2, 2018
Technical Interview Questions And Answers 032. Technical interview question: Give the output of following code #include<stdio.h> int main() { int arr; foo(arr); return 0; } void foo(int *arr[]) { int…Prashant ChaudhariApril 1, 2018