const char * cp; // cp is made const since we should not use it to write cp = &ram_dummy; // address taken and assigned while(cp != &ram_dummy[0x60]) // pointer comparison total += *cp++; // pointer deference