C语言—复合字面量

作者:追风剑情 发布于:2019-10-13 20:50 分类:C

示例

  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. #include <stdbool.h>
  6.  
  7. #define COLS 4
  8.  
  9. int sum2d(const int ar[][COLS], int rows);
  10. int sum(const int ar[], int n);
  11.  
  12. //argc: 参数个数 argv[]: 参数数组
  13. int main(int argc, char *argv[])
  14. {
  15. int total1, total2, total3;
  16. int * pt1;
  17. int(*pt2)[COLS];
  18.  
  19. //右边的写法称为复合字面量
  20. pt1 = (int[2]) { 10, 20 };//匿名数组
  21. pt2 = (int[2][COLS]) { {1, 2, 3, -9}, { 4,5,6,-8 } };//匿名数组
  22.  
  23. total1 = sum(pt1, 2);
  24. total2 = sum2d(pt2, 2);
  25. total3 = sum((int[]) { 4, 4, 4, 5, 5, 5 }, 6);
  26.  
  27. printf("total1=%d\n", total1);
  28. printf("total2=%d\n", total2);
  29. printf("total3=%d\n", total3);
  30.  
  31. system("pause");
  32. return 0;
  33. }
  34.  
  35. int sum(const int ar[], int n)
  36. {
  37. int i;
  38. int total = 0;
  39. for (i = 0; i < n; i++)
  40. total += ar[i];
  41. return total;
  42. }
  43.  
  44. int sum2d(const int ar[][COLS], int rows)
  45. {
  46. int r;
  47. int c;
  48. int tot = 0;
  49. for (r = 0; r < rows; r++)
  50. for (c = 0; c < COLS; c++)
  51. tot += ar[r][c];
  52. return tot;
  53. }

运行测试 
1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号