⟩ What will be output if you will execute following c code? #include<stdio.h> void main(){ int arr[][3]={{1,2},{3,4,5},{5}}; printf("%d %d %d",sizeof(arr),arr[0][2],arr[1][2]); }
18 0 5
18 0 5
How to reverse a singly linked list?
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?