Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.
Concatenate two circularly single linked list into one circularly linked list
typedef struct list node{
int data;
list pointer link;
};
list pointer concatenate(list pointer list1,list pointer list2){
}
This Question is not yet answered!
Related Answered Questions
Related Open Questions