VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 808|回复: 5

在VC++6.0运行程序所发生的问题

[复制链接]

2

主题

3

帖子

4.00

积分

新手上路

Rank: 1

积分
4.00
发表于 2020-11-4 12:30:01 | 显示全部楼层 |阅读模式
#include<stdio.h>
#include<string.h>
#include<stdib.h>
#define LEN sizeof(struct AddressList)

struct AddressList
{
char name[20];
char telephone[12];
char e_mail[30];
struct AddressList *next;
};

atruct AddressList * create(void);

main()
{
struct AddressList *h;
h = create();
}

struct AddressList * create()
{
struct AddressList *head;
struct AddressList *p;
struct AddressList *tail;
char name[20];

head = NULL;
tail = NULL;
printf("请输入结点数据:\n");
printf("姓名:");
gets(name);
while(strcmp(name,"")!=0)
{
p=(struct AddressList *)malloc(LEN);
if(p==NULL)
{
  printf("内存不足!\n");
  exit(1);
}
else
{
  strcpy(p-name,name);
  printf("电话:");
  gets(p->telephone);
  printf("Email地址:");
  gets(p->e_mail);
  if(head==NULL)
     head=p;
  else
          tail->next=p;
  tail=p;

  printf("\n请输入下一个结点数据:\n");
  printf("姓名:");
  gets(name);
}
}
if (head !=NULL)
    tail->next=NULL;

printf("建立链表过程结束\n");
return head;
}


--------------------Configuration: 2题 - Win32 Debug--------------------
Compiling...
2题.cpp
F:\2题.cpp(3) : fatal error C1083: Cannot open include file: 'stdib.h': No such file or directory
执行 cl.exe 时出错.

2题.obj - 1 error(s), 0 warning(s)


回复

使用道具 举报

0

主题

20

帖子

21.00

积分

新手上路

Rank: 1

积分
21.00
发表于 2020-11-4 13:45:01 | 显示全部楼层
#include<stdib.h>------>#include<stdlib.h>
回复

使用道具 举报

1

主题

14

帖子

9.00

积分

新手上路

Rank: 1

积分
9.00
发表于 2020-11-4 14:30:01 | 显示全部楼层
仔细点啊   :)
回复

使用道具 举报

2

主题

20

帖子

12.00

积分

新手上路

Rank: 1

积分
12.00
发表于 2020-11-4 15:30:01 | 显示全部楼层
.............stdlib,standard library嘛
回复

使用道具 举报

0

主题

3

帖子

3.00

积分

新手上路

Rank: 1

积分
3.00
发表于 2020-11-4 17:15:01 | 显示全部楼层
慢慢就好了只不过仔细一点
回复

使用道具 举报

0

主题

5

帖子

5.00

积分

新手上路

Rank: 1

积分
5.00
发表于 2020-11-4 18:45:01 | 显示全部楼层

F:\2题.cpp(3) : fatal error C1083: Cannot open include file: 'stdib.h': No such file or directory
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表