#include"iostream" using namespace std; int main() { char a[7] = "abcdef"; char* p, * t; p = a; t = a + 5; } 如上,如何在键盘上输入a然后输出相应的“abcdef”?