Examlex

Solved

Consider the Following Statements: Struct SupplierType
\quad String Name; \quad Int SupplierID;
};
Struct PaintType

question 11

Multiple Choice

Consider the following statements: struct supplierType
{
\quad string name;
\quad int supplierID;
};
struct paintType
{
\quad supplierType supplier;
\quad string color;
\quad string paintID;
};
paintType paint;
What is the data type of paint.supplier?


Definitions:

Related Questions