标题:该程序出来什么问题?(easy)
只看楼主
hijk_12
Rank: 1
等 级:新手上路
帖 子:47
专家分:0
注 册:2005-6-25
 问题点数:0 回复次数:1 
该程序出来什么问题?(easy)

#define max 100 typedef int elemtype; typedef struct {elemtype num[max]; //虽然定义了这个数姐,但它用不上. int length; }List;

void Initlist(List L) //线性表的初始化 {L.length=0; } main() {List L; Initlist(L); printf("length=%d\n",L.length); getch(); } 这个程序运行结果应为0,但结果却是12803 !! 为什么呢?

搜索更多相关主题的帖子: easy 
2005-07-10 13:39
anycall628
Rank: 1
等 级:新手上路
帖 子:222
专家分:0
注 册:2005-2-18
得分:0 

#define max 100 typedef int elemtype; typedef struct {elemtype num[max]; int length; }List;

void Initlist(List *S) {S->length=0; }

main() {List L,*P; P=&L; Initlist(P); printf("length=%d\n",L.length); getch(); } 


爱生活,爱编程。
2005-07-10 20:54



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-22618-1-1.html




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

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