struct type addressBook has a component people which is an array of elements of struct type person. person has a component phoneNumbers which is an array. What is the correct reference for the second phone number of the second person in myFriends (type addressBook)?
a) myFriends.person[1].phoneNumber[1]
b) myFriends.person.phoneNumber[1]
c) addressBook.people[1].phoneNumber[1]
d) myFriends.people[1].phoneNumber[1]
d) myFriends.people[1].phoneNumber[1]
Computer Science & Information Technology
You might also like to view...
To select to how many decimal places a value will display; you would use which function?
A) Decimal B) Round C) Int D) Currency
Computer Science & Information Technology
A(n) ________ is a button or area within a group that you click to perform a task
Fill in the blank(s) with correct word
Computer Science & Information Technology