of one type of two types of three types of fours types of any number of types
char int float double any one of the above
bins[1] has the value 3 bins[2] has the value 7 bins[3] has the value 6 bins[4] has the value 6 all of the above
bins[3] is assigned the value 0 bins[3] is assigned the value 1 bins[3] is assigned the value 4 bins[3] is assigned the value 9 bins[3] is assigned the value 16
has elements 1 thru' to 4 has element 1 thru' to 5 has element 0 thru' to 4 has element 0 thru' to 5 has element 0 thru to 6
d[2] has the value 8 d[2] has the value 4 d[2] has the value 5 can't tell what the value of d[2] is d[2] is a non-existent element
d[4] has the value 8 d[4] has the value 4 d[4] has the value 5 can't tell what the value of d[4] is d[4] is a non-existent element
d[5] has the value 8 d[5] has the value 4 d[5] has the value 5 can't tell what the value of d[5] is d[5] is a non-existent element
d[0][1] has the value 8 d[0][1] has the value 4 d[0][1] has the value 5 d[0][1] has the value 9 declaration is invalid
top