填空题

已知a所指的数组中有N个元素。函数fun的功能是,将下标k(k>0) 开始的后续元素全部向前移动一个位置。请填空。
void fun(int a[N], int k)
int i;
for(i=k; i<N; i++) a[______]=a[i];

【参考答案】

i-1