标签: c++ arrays string
为什么打印整个数组:
char d[6] = "jelly"; cout << d << endl;
虽然这不是?
int e[6] = {1,2,3,4,5,6}; cout << e << endl;