#include <string.h>
#include <iostream>
using namespace std;
int main(void)
{
char *str = new char[100];
if(NULL==str)
{
system("pause");
return 0;
}
strcpy(str, "Hello imooc");
cout<<str<<endl;
delete []str;
p==NULL;
return 0;
}
说我存在非法字符,明明在vs上都能运行的。
#include <iostream>
using namespace std;
int main(void)
{
char *str = new char[100];
if(NULL==str)
{
system("pause");
return 0;
}
strcpy(str, "Hello imooc");
cout<<str<<endl;
delete []str;
p==NULL;
return 0;
}
说我存在非法字符,明明在vs上都能运行的。
2017-02-21