在C語言中,可以使用循環結構(例如for循環或while循環)來依次讀取數組中的元素。下面是兩種常用的方法:
#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;
}
輸出結果為:1 2 3 4 5
這種方法使用循環變量i作為數組的下標,通過arr[i]來訪問數組中的元素。
#include <stdio.h>
int main() {
int arr[5] = {1, 2, 3, 4, 5};
int *ptr = arr; // 將指針ptr指向數組的首地址
int i;
for (i = 0; i < 5; i++) {
printf("%d ", *(ptr + i));
}
return 0;
}
輸出結果與上述方法相同:1 2 3 4 5
這種方法使用指針ptr來指向數組的首地址,通過*(ptr + i)來訪問數組中的元素。循環變量i可以控制指針的偏移量,從而訪問數組中的不同元素。