⟩ What will be output if you will execute following c code? #include<stdio.h> #define var 3 void main(){ short num[3][2]={3,6,9,12,15,18}; printf("%d %d",*(num+1)[1],**(num+2));
15 15
15 15
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?
Do you know what is linear search?
What is Binary Search Tree and explain its time complexity?
What is Mergesort and Hashtable?
How to sort 1 million floating point numbers?
Explain binary search?
What is bubble sort algorithm?
Tell me what is quick sort?
How to Inverting a function in Sort And Searching?