为了账号安全,请及时绑定邮箱和手机立即绑定
这个答案错了吧
如果仅仅要指针可指向const定义的变量,只用`const int *p = &a;` 或 `int const *p = &a;` 就可以了吧。

如果要指针指向也不可修改,那么不应该是 `const int *const p = &a;` 或者 `int const *const p = &a;`吗?

答案的 `const int const *p = &a;` 是什么意思?
编译器是什么版本
interesting!!!
指针申请内存
#include <string.h>

#include <iostream>

using namespace std;

int main(void)

{
char*str =new char[100];
//在堆中申请100个char类型的内存



//拷贝Hello C++字符串到分配的堆中的内存中


strcpy(str, "Hello imooc");
count<<str<<endl;
//打印字符串
delete []str;

//释放内存

str ==NULL;




return 0;

}
老师你为什么想打小萝卜头
建议已经明白区分的大家不要看评论,,,会更乱
感觉看评论也可以学到很多东西
不错,谢谢老师
#include <string.h>
#include <iostream>
using namespace std;
int main(void)
{
char *str = new char[100];
if(NULL==str)
{
return 0;
}
strcpy(str, "Hello imooc");
cout<<str<<endl;
delete[] str;
str=NULL;
return 0;
}
#include <iostream>
using namespace std;
int main(void)
{
int x = 3;
//定义引用,y是x的引用
int &y=x;
//打印x和y的值
cout<<x<<endl;
cout<<y<<endl;
//修改y的值
y = 10;
//再次打印x和y的值
cout<<x<<","<<y<<endl;
return 0;
}
那个学半年C语言的就想做出程序的有点想多了‘
还是弄不懂什么时候加*,什么时候不加*
申请内存是用来干什么
[Error] invalid conversion from 'const int*' to 'int*' [-fpermissive]
课程须知
本课程是C++初级课程 熟练掌握C语言开发语言基础语法
老师告诉你能学到什么?
1、C++语言引用的魅力 2、C++语言const的用法 3、C++语言函数默认值及函数重载 4、C++语言内存管理

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消