阅读量:1
在C语言中,可以通过循环遍历数组的每个元素来读取数组。以下是两种常见的方法:
- 使用for循环遍历数组:
#include <stdio.h> int main() { int arr[5] = {1, 2, 3, 4, 5}; int i; for (i = 0; i < 5; i++) { printf("%d ", arr[i]); } return 0; }
- 使用指针遍历数组:
#include <stdio.h> int main() { int arr[5] = {1, 2, 3, 4, 5}; int *ptr = arr; int i; for (i = 0; i < 5; i++) { printf("%d ", *ptr); ptr++; } return 0; }
无论使用哪种方法,都可以通过访问数组的索引或者通过指针来读取数组中的元素。