向函数传递结构

作者:追风剑情 发布于:2020-1-19 19:49 分类:C

示例

  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. #include <string.h>
  6. #include <ctype.h>
  7. //malloc()、free()
  8. #include <stdlib.h>
  9. #include <time.h>
  10.  
  11. #define FUNDLEN 50
  12.  
  13. struct funds {
  14. char bank[FUNDLEN];
  15. double bankfund;
  16. char save[FUNDLEN];
  17. double savefund;
  18. };
  19.  
  20. double sum(double, double);
  21. double sum1(const struct funds *); /* 参数是一个指针 */
  22. double sum2(struct funds moolah); /* 参数是一个结构 */
  23.  
  24. //argc: 参数个数 argv[]: 参数数组
  25. //int main(int argc, char **argv)
  26. int main(int argc, char *argv[])
  27. {
  28. struct funds stan = {
  29. "Garlic-Melon Bank",
  30. 4032.27,
  31. "Lucky's Savings and Loan",
  32. 8543.94
  33. };
  34.  
  35. // 传递结构成员
  36. printf("Stan has a total of $%.2f.\n",
  37. sum(stan.bankfund, stan.savefund));
  38.  
  39. // 传递结构的地址
  40. printf("Stan has a total of $%.2f.\n",
  41. sum1(&stan));
  42.  
  43. // 传递结构
  44. printf("Stan has a total of $%.2f.\n",
  45. sum2(stan));
  46.  
  47. system("pause");
  48. return 0;
  49. }
  50.  
  51. double sum(double x, double y)
  52. {
  53. return (x + y);
  54. }
  55.  
  56. double sum1(const struct funds * money)
  57. {
  58. return (money->bankfund + money->savefund);
  59. }
  60.  
  61. double sum2(struct funds moolah)
  62. {
  63. return (moolah.bankfund + moolah.savefund);
  64. }

运行测试

1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号