Given the following function header, write the code to find a node in a linked list with the value K. int findNode(int K) { }
Do sequential search moveing through the nodes one at a time.