写出下列程序的运行结果。 #include #include typedef struct {char name[10]; long hum; float score; }STU; main() {S

admin2017-10-26  68

问题 写出下列程序的运行结果。
  #include
  #include
  typedef struct
  {char name[10];
    long hum;
    float score;
    }STU;
    main()
    {STU a={"liming",1001,86},b={"anjia",1002,95},c={"lili",1003,100},d,*p=&d;
    d=a:
    if(strcmp(a.name,b.name)>0) d=b;
    if(strcmp(c.name,b.name)>0) d=c;
    printf("s,%d\n",p—>name,d.num);
    }

选项

答案lili,1003

解析
转载请注明原文地址:https://kaotiyun.com/show/86kx777K
0

最新回复(0)