C++ Debug Assignment - Reading Linked List[code]#include<iostream> using namespace std; struct Node { int val; Node *p_next; Node(int v)...