| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 333 人关注过本帖
标题:初级链表,麻烦帮我看下问题出在哪
取消只看楼主 加入收藏
明年今曰
Rank: 1
等 级:新手上路
帖 子:15
专家分:0
注 册:2014-3-21
结帖率:88.89%
收藏
 问题点数:0 回复次数:0 
初级链表,麻烦帮我看下问题出在哪
#include<stdio.h>
#include<malloc.h>
#include<string.h>
struct List_T
{
    int Mun;
    struct List_T * pNext;
};
int main()
{
    struct List_T * head = NULL;
    struct List_T * pOne;
    struct List_T * pTwo;
    struct List_T * pTem;
    head = (struct List_T *)malloc(sizeof(struct List_T));
    if (head == NULL)
    {
        perror("malloc error!");
        return 1;
    }
    memset(head, 0, sizeof(struct List_T));
    pOne = (struct List_T *)malloc(sizeof(struct List_T));
    if (pOne == NULL)
    {
        perror("malloc error!");
        return 1;
    }
    memset(pOne, 0, sizeof(struct List_T));
    pOne->Mun = 1;
    head->pNext = pOne;
    pTwo = (struct List_T *)malloc(sizeof(struct List_T));
    if (pTwo == NULL)
    {
        perror("malloc error!");
        return 1;
    }
    memset(pTwo, 0, sizeof(struct List_T));
    pTwo->Mun = 2;
    pOne->pNext = pTwo;
   
    pTem = head->pNext;
    while(pTem != NULL)
    {
        printf("%d\n",pTem->Mun);
        pTem = head->pNext;
    }
    return 0;

}  为什么我一运行就死循环了  一直111111111111111   麻烦帮我看下问题出在哪,谢谢!
搜索更多相关主题的帖子: include return 
2014-04-26 12:05
快速回复:初级链表,麻烦帮我看下问题出在哪
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.020411 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved