write a program which will read price of an item and tax rate.the program will call a function which will calculate the final price of the item. the formula is as follows:
price: item price+ (item price * (tax rate))
The price calculated by the function should be displayed by the main program.
Did you write any code for this yet? It seems pretty straight forward. If you don't know where to start, I suggest looking in your textbook for some similar problems or browsing the Internet for C++ calculation programs.