#include #include /* Linked List with Pointers - easy version */ struct person { char name[20]; person* next; }; void main() { person* start=NULL; start = new person; strcpy(start -> name, "Carman"); start -> next = NULL; start -> next = new person; strcpy(start -> next -> name, "John"); start -> next -> next = NULL; start -> next -> next = new person; strcpy(start -> next -> next -> name, "George"); start -> next -> next -> next = NULL; }