struct tax_node
{
char form; // tax form letter
int version; // tax form number
tax_node *next; // pointer to next node
void *print_contents (tax_ptr node);
};
I can not seem to get why function print_contents will not work. The couts at the end of the program is just to test that it printed correctly. But, if I need it to print the contents such when print_contents(ptr2) is called. I think it should be tax_ptr in the parameter list but im not quite sure