Asked by Jean

Write a statement that assigns the length of an array named strAddressBook to a variable named
intAddressCount.

Answers

Answered by r0306
int intAddressCount = strAddressBook.length;
Answered by mike
intAddressCount = strAddressBook.length;
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions