Firstly, note that the third element of the array would bearray[2], notarray[3]. The compiler will give a warning about having too many elements in the initializer: warning: excess elements inarrayinitializer5|intarray[2] = {1,2,3}; | ^ note: (near initializationfor‘array’) If you...