C语言倒序输出数组怎么写printf,C++里面是cout<<a[i]<<" ";改成C语言怎么写啊,谢谢,真的不会(* ̄m ̄)
for(i = n -1; i >= 0; i --)printf("%d " , a[i]);