Line 16: you call getPackage(), but you ignore the result.
Line 17: You call getHours(), but ignore the result.
Line 18: You call calculateCharges(), but pass no arguments. calculateCharges requires two arguments. You ignore the result here also.
Line 19: This is a function prototype, not a function call. Get rid of the
void
. ShowBill() requires one argument, but you don't pass any.
Line 42: Why is getHours() a
char
function, while h is an int?
PLEASE USE CODE TAGS (the <> formatting button) when posting code.
It makes it easier to read your code and also easier to respond to your post.
http://www.cplusplus.com/articles/jEywvCM9/
Hint: You can edit your post, highlight your code and press the <> formatting button.