⟩ What will be output if you will execute following c code? #include<stdio.h> void main(){ int a=5,b=10,c=15; int *arr[3]={&a,&b,&c}; printf("%d",*arr[*arr[1]-8]);
Compilation error
Compilation error
Tell me how to find middle element of linked list in one pass?
By using C++ with an example describe linked list?
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?