c语言编程题 .键盘输入一行字符,每一个字符存放在一个链表节点,按反序把这行字符打印出来 5

 我来答
司马刀剑
高粉答主

2018-05-24 · 每个回答都超有意思的
知道顶级答主
回答量:4.6万
采纳率:93%
帮助的人:7518万
展开全部
#include<stdio.h>
#include<string.h>
void printit(char *str,int length) //返序输出函数
{

int i;
for(i=length-1;i>=0;i--) //从给定的字符串的最后一位依次向前遍历各字符
putchar(*(str+i)); //每向前一个字符即打印该字符,直至第一个字符为止。
}
int main()
{ char str[80]=""; //定义一个长度为80字节的字符串数组,并初始化
gets(str); //从键盘中输入一个字符串(遇回车键结束)
printit(str,strlen(str)); //调用上面定义的函数反序输出字符串
printf("\n"); //输入一个回车换行符,使后续输出能另起一行
return 0;
}
songchenboy
2018-12-24 · TA获得超过118个赞
知道答主
回答量:9
采纳率:100%
帮助的人:2.5万
展开全部
#include <stdio.h>
#include <stdlib.h>

struct node {
    char ch;
    struct node *next;
};

int main(int argc, char *argv[])
{
    int c;
    struct node *np, *head;
    
    head = NULL;
    while ((c = getchar()) != EOF && c != '\n') {
        np = (struct node *)malloc(sizeof(struct node));
        if (np != NULL) {
            np->ch = c;
            np->next = head;
            head = np;
        } else {
            fprintf(stderr, "memory is not available!\n");
            exit(1);
        }
    }
    
    for (np = head; np != NULL; np = np->next)
        putchar(np->ch);
    putchar('\n');
    
    return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式