Question
Write a statement that assigns the length of an array named strAddressBook to a variable named
intAddressCount.
intAddressCount.
Answers
r0306
int intAddressCount = strAddressBook.length;
mike
intAddressCount = strAddressBook.length;