給大家出個題啊,下面代碼的輸出結果為什么?
int m = 1, n = 2, *p = &m;
cout << ++*q << *++q << endl;
int m = 1, n = 2, *p = &m;
cout << ++*q << *++q << endl;
2015-10-03