I have been asked what seemed like a fairly simple question. Question is to write a prototype and algo for a function for deleting a node in a linked list, but with following constraints:
1) You accept pointer to the start node as first parameter and item to be deleted as second parameter. start node is not global
2) You WILL NOT be returning pointer to the start node.
3) You WILL NOT be accepting a pointer to pointer to start node.
My answer was to store the data i...