I'm having trouble trying to figure out what the best way to declare an array that will hold up to 10 integers. with the declaration format for the array being
DataType ArrayName[NumElements]; can anyone help? thank you
or........ int ArrayName []={0,1,2,3,4,5,6,7,8,9};// elements initialized to intended values
or........ int ArrayName [10] ={0};// all elements initialized to zero