利用C语言,编写一程序:通过赋初始值按行顺序给2x3的二维数组赋予2、4、6……等偶数,然后按列的顺序输出该数组。 #include <stdio.h> int main() { int a[2][3]; int k = 2