摘要: #include "stdafx.h"#include <iostream>using namespace std;int _tmain(int argc, _TCHAR* argv[]){ int x=10; int y=20; int *i=&x; //相当于int *i; i=&x; 因为=比*的优先级高 cout << "x:"<<x&l... 阅读全文
posted @ 2010-08-23 12:28 一 缕 阳 光 阅读(171) 评论(0) 推荐(0)