// Array declaration by specifying size and initializing
// elements
int arr[6] = { 10, 20, 30, 40 }
// Compiler creates an arrayof size 6, initializes first
// 4 elements as specified byuserand rest two elements as0.
// above is same as "int arr[] = {10, 20, 30, 40, 0, 0}"