为了账号安全,请及时绑定邮箱和手机立即绑定
声明的时候应该是 int getMax(int arr[],int count)
#include<iostream.h>
int main(void)
{
const count=3;
const *p=&count;
for(int i=0;i<=*p;i++)
{
cout<<"hello,world"<<endl;
}
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;
}
我错了,还是通过了。
//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 < *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<<endl;
cout<<y<<endl;
//修改y的值
y = 10;
//再次打印x和y的值
cout<<x<<','<<y<<endl;
return 0;
}
#include<iostream.h>
int main(void)
{
int x=3;
int &y=x;
cout<<"x="<<x<<",y="<<y<<endl;
y=4;
cout<<"x="<<x<<",y="<<y<<endl;
}
谢谢老师 茅塞顿开
c 语言{
申请 void *malloc(size_t size);
释放 void free(void *memblock);
}
C++从入门到入院
这个老师讲得不错
#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 *p = new int(1);
delete p;
p = NULL;

int *p = new int[1];
delete []p;
p = NULL;
#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 = 1;
//再次打印x和y的值
cout<<x<<endl;
cout<<y<<endl;
return 0;
}
结果要有6哦 所以第一个函数 结果最大要是6哦 举一反三 活学活用嘛
课程须知
本课程是C++初级课程 熟练掌握C语言开发语言基础语法
老师告诉你能学到什么?
1、C++语言引用的魅力 2、C++语言const的用法 3、C++语言函数默认值及函数重载 4、C++语言内存管理

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消