Print a Linked List
typedef struct elephant {
void print_elephants(const ELEPHANT* ptr);
ELEPHANT e1, e2, e3, *start;
strcpy(e2.name, "Elmer");
strcpy(e3.name, "Eloise");
void print_elephants(const ELEPHANT* ptr)
printf("\nElephant numer %d is %s.",
This is proram pg567.c