Self Assessment: Part 3
Convince yourself that you fully understand the following terms, concepts, and processes, including how to use all these to successfully write a C program on your own:
- One-dimensional arrays
- Declaring
- Using for-loops to traverse an array and operate upon array elements: initialize, sum etc.
- Two-dimensional arrays:
- Declaring
- Using for-loops to traverse an array and operate upon array elements: initialize, sum etc.
- Functions
- Writing a function
- Declaring function parameters
- Calling a function and passing it data
- Returning a result from a function
- Assigning a function result to a variable