What is the output of the following program.?
```
#include
struct ShoeType{ char style; double price;};int main(){
ShoeType shoe1, shoe2; shoe1.style = 'P'; shoe1.price =
98.98; cout << shoe1.style << " $" << shoe1.price <<
endl;
shoe2 = shoe1;
//Put shoe2 on sale!
shoe2.price = shoe1.price/2;
cout <<; shoe2.style << ,, $ <
What will be an ideal response?
```
P $98.98
P $49.49
```
You might also like to view...
A comment occurs when a slide show designer shares a file with reviewers. ? _________________________
Answer the following statement true (T) or false (F)
Suppose the project team prototypes the home page and the first-level pages. What type of prototype is this?
What will be an ideal response?
________ allows the user to see the effect of a QuickStyle without actually selecting it
A) Live Preview B) Draft view C) Outline view D) Print Preview
____________ loops are often used for inputting data when you do not know the exact number of values to be entered.
Fill in the blank(s) with the appropriate word(s).