c语言中指向结构体指针问题,求大神,为甚么printf("%d",*p);错误*去掉了却可以了
#include<stdio.h>#include<stdlib.h>#include<math.h>intmain(){structstudent{intnum;cha...
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
int main()
{
struct student
{
int num;
char c[10];
}s[3]={100,"ffwq",101,"dddq",102,"fwfw"};
struct student *p;
p=(struct student*)s[0].num;
printf("%d",*p);
system("pause");
} 展开
#include<stdlib.h>
#include<math.h>
int main()
{
struct student
{
int num;
char c[10];
}s[3]={100,"ffwq",101,"dddq",102,"fwfw"};
struct student *p;
p=(struct student*)s[0].num;
printf("%d",*p);
system("pause");
} 展开
2个回答
2016-12-29
展开全部
p是结构体指液和针,s是结构体数组,指针也是数字,应该是长整型数字前埋裂,
s[0].num是结构体数组中的一个普通整型数字,
p=(struct student*)s[0].num;这一行虽不慧闭报错,但p指向的单元的内容是未知的,类型也是未知的,不建议这样做;
所以printf("%d",*p);这一行以数字格式输出*p就报错了,
把*去掉,输出的就是指针,就是前面强行赋值的100。
s[0].num是结构体数组中的一个普通整型数字,
p=(struct student*)s[0].num;这一行虽不慧闭报错,但p指向的单元的内容是未知的,类型也是未知的,不建议这样做;
所以printf("%d",*p);这一行以数字格式输出*p就报错了,
把*去掉,输出的就是指针,就是前面强行赋值的100。
追问
嗯,谢谢,我应该这样p=(struct student*)&s[0].num;,只是想尝试这种写法
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
指针用的告或不对
应该是
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
int main()
{
struct 袜芹伍student
{
int num;
char c[10];
}s[3]={100,"ffwq",101,"dddq",102,"fwfw"};
struct student *p;
p=(struct student*)&s[0];
printf("%d",p->首纤num);
system("pause");
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询