在C語言中,可以使用循環語句來輸出數組的元素。下面是兩種常見的方式:
#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
#include <stdio.h>
int main() {
int arr[5] = {1, 2, 3, 4, 5};
int i = 0;
while (i < 5) {
printf("%d ", arr[i]);
i++;
}
return 0;
}
輸出結果:
1 2 3 4 5
無論使用for循環還是while循環,都需要使用一個變量來作為數組的索引,利用這個索引來逐個輸出數組的元素。