I'm trying to make a program to allow a user to enter the number of items and then the cost of each item to calculate the sales tax. I am getting a bunch of errors and I've worked on it for a really long time and can't figure out what the problems are/what the errors mean. Any help is appreciated
Your first problem is that some of your functions do not have () placed after them. Such as void displayBlank on line 83. Go through and double check all of the functions are set up correctly like that.
Sometimes your function prototypes at the top, the functions you are calling in main, and the functions themselves do not have the exact same name.
For example your function is called void displayBlank but you call it displayBlanks everywhere else. (This happens with a few of them). Make sure everything matches up.
Sometimes your function prototypes at the top, the functions you are calling in main, and the functions themselves do not have the exact same name.
For example your function is called void displayBlank but you call it displayBlanks everywhere else. (This happens with a few of them). Make sure everything matches up.
That is why. You need to make sure your function names stay consistent throughout the entire code (which right now they aren't).
I see declaration of displayHead in the original code. So you shall correctly name this function in its definition. The same valid and for displayBlanks because it was named as displayBlank (without ending 's') in the definition.