int Fun (LinkChar *head) { LinkChar *p; int a = 0; p = head; while (p != NULL) { if (p -> a == 'x') a++; p = p -> next; } return a }