填空题

有以下程序:
main()
char str[]="xyz", *ps=str;
while(* ps)ps++;
for(ps--; ps-str>=0;ps--)puts(ps);

执行后的输出结果是

【参考答案】

z yz Xyz