字符串指针与字符串数组易错

(水文)

用一个程序来说明:

#include
#include
#include
using namespace std;
int main()
{
	//1.字符串指针并没有开辟空间,所以无法输入 
	/*char *a;
	cin>>a;*/
	//2.已经初始化字符串指针不可赋值或修改 
	/*char *a="12344";
	a[2]='1';
	char *b="2333";
	a=b; 
	cout<


你可能感兴趣的:(c++)