| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 596 人关注过本帖
标题:编辑结构体,出现的问题
只看楼主 加入收藏
鸟瞰
Rank: 2
等 级:论坛游民
帖 子:17
专家分:16
注 册:2014-6-7
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:5 
编辑结构体,出现的问题

#include<stdio.h>
#include<stdlib.h>
struct stu_type
{
    char name[10];
    long num;
    int age;
    char sex;
};
main()
{
    void list(struct stud_type student);
    struct stu_type student[3],*p;
    int i;
    for(i=0,p=student;i<3;p++,i++)
    {
        printf("Enter all data of student:");
        scanf("%s,%ld,%d,%c\n",p->name,&p->num,&p->age,&p->sex);
    }
    for(i=0;i<3;i++)
        list(student[i]);
}
void list(struct stud_type student)
{
    printf("%-20s%8ld%6d%3c\n",student.name,student.num,student.age,student.sex);
}



--------------------Configuration: hbsh - Win32 Debug--------------------
Compiling...
hbsh.cpp
d:\microsoft visual studio\myprojects\proj\hbsh.cpp(12) : fatal error C1001: INTERNAL COMPILER ERROR
        (compiler file 'msc1.cpp', line 1786)
         Please choose the Technical Support command on the Visual C++
         Help menu, or open the Technical Support help file for more information
执行 cl.exe 时出错.

hbsh.obj - 1 error(s), 0 warning(s)
搜索更多相关主题的帖子: include 结构体 Enter 
2014-10-20 17:25
TonyDeng
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:贵宾
威 望:304
帖 子:25859
专家分:48889
注 册:2011-6-22
收藏
得分:7 
你厉害了,编译器内部错误。

授人以渔,不授人以鱼。
2014-10-20 19:27
TonyDeng
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:贵宾
威 望:304
帖 子:25859
专家分:48889
注 册:2011-6-22
收藏
得分:0 
http://blog.


授人以渔,不授人以鱼。
2014-10-20 19:28
鸟瞰
Rank: 2
等 级:论坛游民
帖 子:17
专家分:16
注 册:2014-6-7
收藏
得分:0 
我打错了,问题找到了
2014-10-20 20:57
鸟瞰
Rank: 2
等 级:论坛游民
帖 子:17
专家分:16
注 册:2014-6-7
收藏
得分:0 
#include<stdio.h>
#include<stdlib.h>
struct stu_type
{
    char name[10];
    long num;
    int age;
    char sex;
};
main()
{
    void list(struct stu_type student);
    struct stu_type student[3],*p;
    int i;
    for(i=0,p=student;i<3;p++,i++)
    {
        printf("Enter all data of student%d:\n",i);
        scanf("%s,%ld,%d,%c\n",p->name,&p->num,&p->age,&p->sex);
    }
    for(i=0;i<3;i++)
        list(student[i]);
}
void list(struct stu_type student)
{
    printf("%-20s%8ld%6d%3c\n",student.name,student.num,student.age,student.sex);
}
2014-10-20 20:59
erty1001
Rank: 9Rank: 9Rank: 9
等 级:蜘蛛侠
威 望:4
帖 子:331
专家分:1433
注 册:2014-8-31
收藏
得分:7 
简单说说:
初步故障应该是语法结构,和编译器的兼容问题
2014-10-20 21:06
快速回复:编辑结构体,出现的问题
数据加载中...
 
   



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

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