c语言自定义一维数组array,遍历一维数组中各个元素并输出
时间: 2023-05-11 14:03:29 浏览: 108
c语言 输出数组元素
可以使用for循环来遍历一维数组中的元素,代码如下:
```c
#include <stdio.h>
int main() {
int array[5] = {1, 2, 3, 4, 5};
int i;
for (i = 0; i < 5; i++) {
printf("%d ", array[i]);
}
return 0;
}
```
输出结果为:1 2 3 4 5
阅读全文