利用递归反向输出字符串

 string end with '#'

void reversePrint()
{
    char c;
    scanf("%c", &c);
    if(c != '#') reversePrint();
    if(c != '#') printf("%c", c);
}

 

posted @ 2013-11-04 15:22  alexeyqian  阅读(749)  评论(1编辑  收藏  举报