Skip to main content

Section 19.17 Summary

In this chapter we studied pointers (addresses of variables) and how they can help with writing better code. We covered:
Pointers make it possible to break up a large problem into many small sub-problems. Summary of designing and testing methods discussed in this chapter:
  • Top-Down Design is used to break down larger problems into manageable pieces.
  • Bottom-Up Testing is used to test the individual pieces.
  • Top-Down Testing is used to check the flow of your program.