- Create a new
type
namedCType
which can beint
,int32
,uint
, anduint32
. - Create a function to get two numbers of
CType
and return the summation of those two.- A (provided
CType
) - B (provided
CType
)
- A (provided
- Create a list of
uints
s with at least 5 elements init. - Update your second step function to get variable number of
CType
s and return the summation of all of them.- Numbers (provided
... CType
)
- Numbers (provided
- Use your function to display the summation of your list elements.
Click here to view the solution