结构体赋值

作者:追风剑情 发布于:2020-1-20 10:34 分类:C

示例

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdbool.h>
  4.  
  5. #define LEN 20
  6.  
  7. struct names {
  8. char first[LEN];
  9. char last[LEN];
  10. };
  11.  
  12. struct guy {
  13. struct names handle; //嵌套结构
  14. char favfood[LEN];
  15. char job[LEN];
  16. float income;
  17. };
  18.  
  19. int main(int argc, char* argv[])
  20. {
  21. // 初始化一个结构变量
  22. struct guy fellow = {
  23. { "Ewen", "Villard" },
  24. "grilled salmon",
  25. "personality coach",
  26. 68112.00
  27. };
  28. //结构体直接赋值
  29. struct guy fellow1 = fellow;//内存复制(按值传递)
  30. fellow.job[0] = 'X';
  31. printf("first=%s, last=%s\n",
  32. fellow1.handle.first, fellow1.handle.last);
  33. printf("favfood=%s, job=%s\nincome=%.2f\n",
  34. fellow1.favfood, fellow1.job, fellow1.income);
  35.  
  36.  
  37.  
  38. system("pause");
  39. return 0;
  40. }

运行测试

1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号