char a[10]="D:\\";数组不能用“=”赋值,字符数组只能用strcpy函数拷贝进去
肯定不行了a是字符数组,赋值的应该是字符串才对,应该改成 #include "stdafx.h"int _tmain(int argc, _TCHAR* argv[]){ char a[10] = “D:\\”; // 在定义的时候赋值,字符串用双引号return 0; }