#include <stdio.h>
#include <stdlib.h>

int main() {
    int arr[6] = {0}; //每个值默认0
    for(int i = 0; i < len; i ++)
        printf("%d\n",arr[i]);
    return 0;
}
输出
========================================
0 0 0 0 0 0

 

相关文章:

  • 2022-12-23
  • 2021-06-09
  • 2022-12-23
  • 2021-10-04
  • 2022-03-05
猜你喜欢
  • 2021-06-10
  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
  • 2021-10-24
  • 2021-11-22
  • 2022-12-23
相关资源
相似解决方案