选择题   对下述程序的判断中,正确的是______。
    #include<stdio.h>
    void main()
    {char*p,s[256];
    p=s;
    while(strcmp(s,'the end'))
    {printf('Input the string:');
    gets(s);while(*p)
    putchar(*p++);}
    }
 
【正确答案】 A
【答案解析】