爲什麼不打印數組我打算使用c而不是C++。我究竟做錯了什麼?我也想知道你可以在char變量中使用哪些字符。無法獲得數組打印在c
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
int map[4][4] = {1,1,1,1,1,1,11,1,1,1,1,1,1,1,1};
int x, y;
for (x = 0; x < 4; x++);
{
for (y = 0; y < 4; y++);
{
printf ("%i ", map[x][y]);
}
printf ("\n");
}
return 0;
}
當你編譯和運行代碼,會發生什麼? – 2013-03-09 21:33:46
你會得到什麼輸出,它與你想要的有什麼不同? – hyde 2013-03-09 21:33:48
你得到了什麼錯誤? – 2013-03-09 21:33:57