Use the following node definition for this problem.struct NodeInt32{int32_t value; NodeInt32* next;
}
Write a function which concatenates two non-empty linked lists. Its exact signature should be: void concat(NodeInt32* headA, NodeInt32* headB); After execution, the tail of headA should point to headB.
The skeleton file is below
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here