[C++]C++小笔记 --- Pointers, Vectors and Array Objects
指针介绍:在开始介绍指针之前,现需要了解两个符号:&寻址和*取值符号;intn=10//&n取的变量n的地址
coutx=1;(*tps).y=2;TheC-stylestringCstylestring是指字符串是以字符数组的方式保存,在字符串结束处以'\0'表示结束。charchars[]={'H','e','l','l','o','\0'};
charchars[]="Hello"//imp