摘要:
1、如下示例程序中:示例代码// Win32_test.cpp : 定义控制台应用程序的入口点。#include "stdafx.h"#include "iostream"using namespace std;int _tmain(int argc, _TCHAR* argv[]){ char *a = "hello"; char *b = "hello"; char s[] = "hello"; //*b = 'b'; error s[0] = 'b'; // 阅读全文