Example - this code will not output anything sensible int number_of_items ; double total, price ; total = price * number_of_items ; price = 7.95 ; number_of_items = 4 ; cout << total << endl ; Because neither price nor number_of_items was given a value before total was calculated using an expression involving price and number_of_items. How should the code above be corrected?