首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
大神们,求教啊!为什么这个程序中在vc6中编译不出...

Tooker2013-10-14 21:44 发布

标题:大神们,求教啊!为什么这个程序中在vc6中编译不出结果啊?
#include<stdio.h>
 #include<stdlib.h>
 #define MAXSIZE 100
 typedef struct 
{
 int data[MAXSIZE]; 
int last;
 }seqlist;
 int createlist(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); 
inputseqlist(l,n);
 outputseqlist(l);
 e=2; 
l=search(l,e); 
printf("第%d个元素是2\n",i); 
return 0;
 } 
 
 
最新话题:

C语言兼职

W3wp进程劫持,已经加载了Dll ,但...

学习好的,需要兼职的,看过来

求助!

C语言程序设计现代方法第二版P152第...

请教C语言三个数中最大数问题

大家好!

求助大佬,请问哪里出错了,运行后...