所以我有这个代码:
#include "stdafx.h"
#include <cstdlib>
#include <iostream>
#include <string>
using namespace std;
...
char* b = new char [10];
strcpy(b, "1234567890");
错误:microsoft visual studio 11.0\vc\include\string.h(110):参见“strcpy”的声明
我如何解决它?