摘要: 一道c语言运算符优先级问题 #include using namespace std; int main() { char test[] = {“This is testing.”}, *p = test; int i,j; i = 2,j=5; //print cout<<*p<<*p++<<endl; // 输出为 : h T cout<<i<<j<<endl; //输出为: 2,5... 阅读全文
posted @ 2014-06-17 22:59 AI Algorithms 阅读(706) 评论(0) 推荐(0) 编辑