影子忍者 发表于 2016-5-29 11:19:34

为何我在codeblocks执行该程序,有报错\ex05\main.c|18|error: dereferencing poin...

#include <stdio.h>

struct stu
{      
      int num;   
      char *name;      
      char sex;      
      float score;      
} boy1 = {102, "Fishc", 'M', 78.5};

void main()
{
      struct stu *pstu;
      pstu = &boy1;
      
      printf("Number = %d\nName = %s\n", boy1.num, boy1.name);      
      printf("Sex = %c\nScore = %f\n\n", boy1.sex, boy1.score);      

      printf("Number = %d\nName = %s\n", (*pstu).num, (*pstu).name);      
      printf("Sex = %c\nScore = %f\n\n", (*pstu).sex, (*pstu).score);      

      printf("Number = %d\nName = %s\n", pstu->num, pstu->name);      
      printf("Sex = %c\nScore = %f\n\n", pstu->sex, pstu->score);      
}

影子忍者 发表于 2016-5-29 11:24:27

各位大神,如何在codeblocks中解决,我已经百度过了,还是解决不了

DAY 发表于 2016-5-29 23:21:50

此代码让人头疼,,,,

影子忍者 发表于 2016-5-31 22:47:48

DAY 发表于 2016-5-29 23:21
此代码让人头疼,,,,

不会吧,朋友

n0noper 发表于 2016-6-1 10:13:24


楼主 麻烦把 错误信息贴出来,别截取一部分看不懂啊。

刚才试了一下,我的机器是可以正常运行的。

DAY 发表于 2016-6-1 23:00:34

没有问题,,,可以正常运行,,

xhbsingle 发表于 2016-6-1 23:23:15

学习
页: [1]
查看完整版本: 为何我在codeblocks执行该程序,有报错\ex05\main.c|18|error: dereferencing poin...