- Create a new
typenamedCTypewhich can beint,int32,uint, anduint32. - Create a function to get two numbers of
CTypeand return the summation of those two.- A (provided
CType) - B (provided
CType)
- A (provided
- Create a list of
uintss with at least 5 elements init. - Update your second step function to get variable number of
CTypes 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