Notes for Monday 02.27, CISC181 2.30pm Last Friday we covered recursion... review Chapter 13 in Savitch if you missed the lecture. Today we'll talk about addresses/pointers... We'll start with how to write a recursive version of: int printArray(int n, int a[]); There are two ways.. one involving pointers, and another not involving pointers. First let's review the basics of addresses and pointers. Look at the programs address1.cc and address2.cc