把数组a赋给数组b,
 正确的写法是用for循环,将数组a中的元素一个一个赋给数组b的元素。

#include <stdio.h>
int main(void)
 {
     int a[5] = {11, 22, 33, 44, 55};
     int b[5];
     int i;
    for(i=0; i<5; i++)
     {
         b[i] = a[i];
         printf("b[%d] = %d\n", i, b[i]);
     }
    return 0;
 }



















