strpoint.c
上传用户:bjtelijie
上传日期:2010-01-01
资源大小:87k
文件大小:1k
源码类别:

数学计算

开发平台:

Visual C++

  1. # include <stdio.h>
  2. # include <string.h>
  3. void main()
  4. {
  5. struct student
  6. {
  7. long num;
  8. char name[30];
  9. char sex[10];
  10. float score;
  11. };
  12. struct student stu;
  13. struct student *p;
  14. p = &stu;
  15. stu.num = 97032;
  16. strcpy(stu.name, "小明");
  17. strcpy(stu.sex, "男");
  18. stu.score = 98.5;
  19. printf("学号: %ldn姓名: %sn性别: %sn分数: %4.2fn",
  20.     stu.num, stu.name, stu.sex, stu.score);
  21. printf("n");
  22. printf("学号: %ldn姓名: %sn性别: %sn分数: %4.2fn",
  23.     (*p).num, (*p).name, (*p).sex, (*p).score);
  24. }