Given the ShoeType structure type definition. Write a function for the declaration (prototype).

```
struct ShoeType{ char style; double price;
void readShoeRecord(ShoeType& Item);
// Prompts for data and fills ShoeType argument members
```

```
void readShoeRecord(ShoeType& Item)
{
cout << “Enter style, one character, then press “;
cin >> Item.style;
cout << “Enter price as 66.66, (with decimal, no $)”
<< “then press
cin >> Item.price;
```

Computer Science & Information Technology

You might also like to view...

________ projectors use swiveling mirrors to create an image

Fill in the blank(s) with correct word

Computer Science & Information Technology

When an object is rotated, it turns around its

a. View point b. Center point c. Middle point d. Rotation point e. None of these

Computer Science & Information Technology