标题:这个机构体中不能用结构体指针的循环么?内详。
取消只看楼主
wxd343243947
Rank: 1
等 级:新手上路
帖 子:10
专家分:4
注 册:2012-11-10
结帖率:33.33%
已结贴  问题点数:10 回复次数:2 
这个机构体中不能用结构体指针的循环么?内详。
#include<stdio.h>
main()
{
struct student
{
  char name[20];
  long num;
  float score[3];
}st={"wuxiangdong",2011005474,28,48,54.9},*p;
 p=&st;
   int i=0;
 for(i;i<3;i++)
printf("%s\t%ld\t%f",p->name,p->num,p->score[i]);

getch();

}
搜索更多相关主题的帖子: 机构 结构体 
2012-11-28 22:04
wxd343243947
Rank: 1
等 级:新手上路
帖 子:10
专家分:4
注 册:2012-11-10
得分:0 
回复 3楼 萨尔甘
这个是什么情况啊。gg_1.c
C:\Windows\System32\gg_1.c(7) : warning C4305: 'initializing' : truncation from 'const double ' to 'float '
C:\Windows\System32\gg_1.c(12) : error C2143: syntax error : missing ';' before 'type'
C:\Windows\System32\gg_1.c(13) : error C2065: 'i' : undeclared identifier
执行 cl.exe 时出错.
2012-11-29 10:36
wxd343243947
Rank: 1
等 级:新手上路
帖 子:10
专家分:4
注 册:2012-11-10
得分:0 
回复 5楼 萨尔甘
不知道为什么只能够把int i放在主函数的开端,其他的地方不行,求解。
#include<stdio.h>
 struct student
 {
   char name[20];
   long  num;
   float score[3];
 }st={"wuxiangdong",2011005474,28,48,54.9};
 main()
 {   int i;
     struct student *p;
     p=&st;

     for(i=0;i<3;i++)
     printf("%s\t%ld\t%f\n",p->name,p->num,p->score[i]);
     getch();
 }
 
2012-11-29 11:41



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




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

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