What is the output of the following program.?

```
#include using namespace std;
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
```

Computer Science & Information Technology

You might also like to view...

The cropped portion of an image is hidden and cannot be redisplayed by reversing the cropping

Indicate whether the statement is true or false

Computer Science & Information Technology

Once you have saved the document shown in the accompanying figure for the first time, clicking the ____ button saves changes without opening up a dialog box.

A. New B. Save C. Print D. Close

Computer Science & Information Technology