用户名或电子邮箱地址
密码
记住我
char a[10] = { "abc de fg" }; char* p = &a[3]; cout << p;
A、“ de fg” B、“de fg” C、
“ de” D、“de” 喵查答案:“ de fg”
int a[6] = { 1,2,3,4,5,6 }; int* p = a; cout << *p++ ; cout << *(p++); cout << *(++p); cout << *++p;