Define a structure type catNum to represent a catalog number consisting of a two- or three-character category code followed by an integer. Then, define a structure type catEntry to represent a catalog entry. Each entry has a catalog number, a de- scription, a wholesale price, and a retail price.

What will be an ideal response?

```
struct catNum
{
string category;
int number;
};

struct catEntry
{
catNum catref; string description; float wholesale; float retail;
};
```

Computer Science & Information Technology

You might also like to view...

________ limits the number of characters that can be typed into a text or number field

A) Field Limit B) Text Size C) Field Size D) Number Size

Computer Science & Information Technology

Why is it helpful to collapse the view of an outline in an Outline View presentation?

What will be an ideal response?

Computer Science & Information Technology