Write the C++ code to declare (use typedef where possible):
a. three one-dimensional arrays called: force1, force2 and force3 each with at most 30 components and each of base type float.
the answer I got is:
const int MAX_SIZE 30,
typefef int LIST_I
??????? is that correct???
The other problem is:
Write the C++ code to declare (use typedef where possible):
b. a list of course titles with at most 40 components.
a. three one-dimensional arrays called: force1, force2 and force3 each with at most 30 components and each of base type float.
the answer I got is:
const int MAX_SIZE 30,
typefef int LIST_I
??????? is that correct???
The other problem is:
Write the C++ code to declare (use typedef where possible):
b. a list of course titles with at most 40 components.
Comment