填空题

以下程序能将字符串Program!反向打印出来,请填空。 #include<stdio.h> void out(char *str) {char *s=______;/*第一空*/ if(*S==NULL)return; while(______)s++;/*第二空*/ s--; printf("%c\n",*s); *s=NULL; ______;/*第三空*/ } main() {char c[]="Program!"; out(c);}

【参考答案】

str *s out(str)