我在初始化二维字符数组时遇到了困难。当它起作用时,它会给我一个六进制输出。我正在寻找沿网格线的东西。
#include <iostream>
using namespace std;
main()
{
//char test[5][5] = {'***\0','***\0','***\0','***\0','***\0'};
char test[5][5] = {"***\0","***\0","***\0","***\0","***\0"};
cout << test << endl;
cout << char[2][2] << endl;
cin.get();
return 0;
}
建议使用字符串数组,但我需要为另一个将其绑定到价格的数组定义数组地址。