⟩ What will be output if you will execute following c code? #include<stdio.h> union group{ char xarr[2][2]; char yarr[4]; }; void main(){ union group x={'A','B','C','D'}; printf("%c",x.xarr[x.yarr[2]-67][x.yarr[3]-67]); }
B
B
Do you know how to find if linked list has loop?
Given an unsorted linked list, and without using a temporary buffer, write a method that will delete any duplicates from the linked list?
Explain linked list using C++ with an example?
Do you know what does the following function do for a given Linked List?
What is linked list?
Do you know how to reverse String in Java?
Tell me about circular linked list?
Explain the most efficient method to reverse a linked list?
Explain how to find 3rd element from end in a linked list in one pass?
Suppose In an integer array, there is 1 to 100 number, out of one is duplicate, how to find?