In C++
Write the driver function definition for a function called findKthNode that takes as its parameters the linked list (nodeType pointer) and an integer value. The function should find the reference to the kth node and return the integer position of the node to the calling function. If the kth node does not exist, the function should return a -1.
/*PASTE CODE HERE*/