Shifting array to the right by one: for(i=8; i>=0; i--) { a[i+1] = a[i]; }. But instead of filling array from positions 0-8 and than ...
確定! 回上一頁