int a[11] ; int b[11] ; for( int i=0; i<=10; i=i+1 ){ a[i] = i * i ; b[i] = i ; } int c[11] ; c = a + b ; // Vector addition here print ( c[5] );