能把汇编语言源程序翻译成目标的程序称为

 我来答
DoramiHe
推荐于2018-04-14 · 知道合伙人互联网行家
DoramiHe
知道合伙人互联网行家
采纳数:25332 获赞数:59542
2011年中山职业技术学院毕业,现担任毅衣公司京东小二

向TA提问 私信TA
展开全部
#include"stdio.h"
#include"malloc.h"
#define LEN sizeof(struct student)
struct student
{
long int num;
float score;
struct student *next;
};
struct student *creat(void)
{
struct student *head;
struct student *p1,*p2;
int n=0;
p2=p1=(struct student*)malloc(LEN);
printf("请输入学号和成绩: \n");
scanf("%ld%f",&p1->num,&p1->score);
head=NULL;
while(p1->num!=0)
{
n=n+1;
if(n==1) head=p1;
else p2->next=p1;
p2=p1;
p1=(struct student*)malloc(LEN);
printf("请输入学号和成绩: \n");
scanf("%ld%f",&p1->num,&p1->score);
}
p2->next=NULL;

return(head);
}
void main()
{
struct student a,b,c;
struct student *head,*p,*result;
a.num=99101;a.score=89.5;
b.num=99103;b.score=90;
c.num=99107;c.score=85;
head=&a;
a.next=&b;
b.next=&c;
c.next=NULL;
p=head;
do
{
printf("%ld%5.lf\n",p->num,p->score);
p=p->next;
}
while(p!=NULL);
result = creat();
do
{
printf("%ld%5.lf\n",result->num,result->score);
result=result->next;
}
while(result!=NULL);
}
百度网友6e017157
2007-05-31 · TA获得超过1046个赞
知道大有可为答主
回答量:2218
采纳率:50%
帮助的人:1254万
展开全部
编译器了..
之后还必须用链接的程序,把其转化为exe可执行程序...
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式