指针是一个包含其他变量内存地址的变量。指针变量可以像其他变量一样声明。但是,数据类型后面要加上“*”字符。
#include <iostream>; using namespace std; int main{ return 0; }