我也是这样写的,但是编译的时候有错误,说啥strcpy这个没有申明,不懂啊!!!
#include <string.h>
#include <iostream>
using namespace std;
int main(void)
{
//在堆中申请100个char类型的内存
char *str = new char[100];
//拷贝Hello C++字符串到分配的堆中的内存中
strcpy(str, "Hello imooc");
//打印字符串
cout<<str<<endl;
//释放内存
delete []str;
str==NULL;
return 0;
}
#include <string.h>
#include <iostream>
using namespace std;
int main(void)
{
//在堆中申请100个char类型的内存
char *str = new char[100];
//拷贝Hello C++字符串到分配的堆中的内存中
strcpy(str, "Hello imooc");
//打印字符串
cout<<str<<endl;
//释放内存
delete []str;
str==NULL;
return 0;
}
// 说一下指针变量的( * )星号什么加,什么时候不加
int x = 10;
int *p = &x;
cout << p << endl; // 使用指针变量p存储的地址, 不加( * )星号
cout << *p << endl; // 使用指针访问值, 加( * )星号
int x = 10;
int *p = &x;
cout << p << endl; // 使用指针变量p存储的地址, 不加( * )星号
cout << *p << endl; // 使用指针访问值, 加( * )星号
2018-04-22
难怪其它高级语言都有垃圾回收机制,自己管理增加代码量不说,还容易忘记。果然越是底层,手动能力要求就越高,不过我要征服它,我的梦想是成为高手而不仅仅是码农
2018-04-21
#include <string.h>
#include <iostream>
using namespace std;
int main(void)
{
//在堆中申请100个char类型的内存
char *str = new char[100];
//拷贝Hello C++字符串到分配的堆中的内存中
strcpy(str, "Hello imooc");
//打印字符串
cout<<str<<endl;
//释放内存
delete []str;
str==NULL;
return 0;
}
#include <iostream>
using namespace std;
int main(void)
{
//在堆中申请100个char类型的内存
char *str = new char[100];
//拷贝Hello C++字符串到分配的堆中的内存中
strcpy(str, "Hello imooc");
//打印字符串
cout<<str<<endl;
//释放内存
delete []str;
str==NULL;
return 0;
}