为了账号安全,请及时绑定邮箱和手机立即绑定
#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;
}javascript:;
//const
#include <iostream>
using namespace std;
int main(void)
{
//定义常量count
const int count = 3;
const int *p = &count;
//打印count次字符串Hello imooc
for(int i = 0; i < *p; i++)
{
cout << "Hello imooc" << endl;
}
return 0;
}
#include <iostream>
using namespace std;
int main(void)
{
int x = 3;
//定义引用,y是x的引用
int &y = x;
//打印x和y的值
cout << x << y << endl;

//修改y的值
y = 4;
//再次打印x和y的值
cout << x << y << endl;
return 0;
}
我更喜欢这样写
int* p=new int[10];
delete[] p;
已通过
#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;
//释放内存
delet []str;
str=NULL;
return 0;
}
int getMax(int *arr,int count)
{
int maxNum=arr[0];
for(int i = 1; i < count; i++)
{
if(arr[i]>maxNum)
{
maxNum=arr[i];
}
}
return maxNum;
}

int main(void)
{
int numArr[3] = {3, 8, 6};
cout << getMax(5, 6) << endl;
cout << getMax(numArr,3)<< endl;
return 0;
这节课太难懂了,把C的指针和这里的引用都弄混了

最新回答 / 咕噜嘟咚
我也不太清楚,应该是因为在调用函数时会自动为里面的参数赋值(赋自己输入的值)吧

最新回答 / 慕粉1527144879
 "//比较变量与下一个元素的大小"这行代码下你arr写出arrr,并且你这样写结果应该是6,8才是啊,
James老师的比喻很恰当,哈哈
不错不错,收获良多
讲的很好,但是感觉内容有点少
//const
#include <iostream>
using namespace std;
int main(void)
{
//定义常量count
const int count = 3;
const int *p = & count;
//打印count次字符串Hello C++
for(int i = 0; i < count; i++)
{
cout << "Hello imooc" << endl;
}
return 0;
}
课程须知
本课程是C++初级课程 熟练掌握C语言开发语言基础语法
老师告诉你能学到什么?
1、C++语言引用的魅力 2、C++语言const的用法 3、C++语言函数默认值及函数重载 4、C++语言内存管理

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消