#include <stdio.h> int main() { int a[6] = {299, 34, 92, 100}; int b[6], i; //從控制檯輸入數據爲每一個元素賦值 for(i=0; i<6; i++){ scanf("%d", &b[i]); } //輸出數組元素 for(i=0; i<6; i++){ printf("%d ", a[i]); } putchar('\n'); for(i=0; i<6; i++){ printf("%d ", b[i]); } putchar('\n'); return 0; }
只能給元素逐個賦值,不能給數組總體賦值
數組