标题:大神们,求教啊!为什么这个程序中的intputseqlist和createlist在vc6中不能 ...
取消只看楼主
Tooker
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2013-10-12
结帖率:66.67%
已结贴  问题点数:20 回复次数:1 
大神们,求教啊!为什么这个程序中的intputseqlist和createlist在vc6中不能识别啊?
#include<stdio.h>
#include<stdlib.h>
#define MAXSIZE 100
typedef struct
{
 int data[MAXSIZE];
int last;
}seqlist;
int creatlist(seqlist *l)
{
l=(seqlist*)malloc(sizeof(seqlist));
 l->last=0;
return 1;
}
void inputseqlist(seqlist *l,int n)
{
l->data[l->last]=n; l->last+=1;
}
void outputseqlist(seqlist *l)
{
int i;
 printf("output this list\n");
 for(i=0;i<l->last;i++)
 printf("%d\n",l->data[i]);
printf("\n");
}
seqlist* search(seqlist *l,int e)
{
int i=0;
 while(i < l->last && l->data[i]!=e)  
i++;
if(i<=l->last)
 return (l);
else return (0);
}
int main()
{
seqlist *l;
int i,status,n,pos;
status=createlist(l);   
printf("please input database");
scanf("%d",&n);
intputseqlist(l,n);
 outputseqlist(l);
 e=2;
l=search(l,e);
printf("第%d个元素是2\n",i);
return 0;
}
搜索更多相关主题的帖子: include search return 
2013-10-13 22:52
Tooker
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2013-10-12
得分:0 
回复 3楼 天空编程
知道了  谢谢  
改了以后为什么不能在vc6中运行出结果啊
2013-10-14 12:52



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




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

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