微波EDA网,见证研发工程师的成长!
首页 > 硬件设计 > 嵌入式设计 > C51指针定义和应用小结

C51指针定义和应用小结

时间:09-27 来源:互联网 点击:

        1. struct student
          {
          char name[20];
          int num;
          };
          struct student stu1,stu2;
          struct student *p;
          p=stu1;
          访问成员方法:
          A. stu1.num
          B. (*p).num; //因为“.”的优先级高于“*”所以要加括号。
          C. P->num;
        2. struct student stu[10];
          struct student * p;
          p=stu;

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top