int a[10] ; int b[20] ; a = 1 ; // Assign 1 to all elements of a b = 2 ; // Assign 2 to all elements of b a = b ; // Assign all elements of b to a print( a[ 15 ] ) ;