#include #include using namespace std; struct Node { char a; Node* next; }; Node* head; Node* last; void addnode(int abc) { if (head == NULL) { head = new Node(); head->a = abc; last = head; } else { Node* temp; temp = new Node(); temp->a = abc; temp->next = head; // AGAIN! its not head->next head = temp; } } int main() { char sent[16]; cin >> sent; int len = strlen(sent); for (int i = 0; i < le..