⟩ What will be output if you will execute following c code? #include<stdio.h> #define WWW -1 enum {cat,rat}; void main(){ int Dhoni[]={2,'b',0x3,01001,'x1d','111',rat,WWW}; int i; for(i=0;i<8;i++) printf(" %d",Dhoni[i]);
2 98 3 513 29 73 1 -1
2 98 3 513 29 73 1 -1
Explain reverse a linked list iterative solution in Java?
Tell me what should be done in the base case for this recursive problem?
How to reverse a linked list iterative algorithm?
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?