Appending the Linked Lists

ques link:
https://hack.codingblocks.com/contests/c/511/316

code link:
https://ide.codingblocks.com/s/43713

My code is showing run error for the above code.
Please guide.

Hey Kshitij, in buildlist function replace your terminating condition of while loop i.e.while(count!=n) with while(count!=n-1) as by looping one more time you are inserting k also in linked list.

Got it. Thanks a lot