为了账号安全,请及时绑定邮箱和手机立即绑定
#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)
{
int x = 3;
//定义引用,y是x的引用
int &y=x;
//打印x和y的值
cout<<x<<endl;
cout<<y<<endl;
//修改y的值
y = 5;
//再次打印x和y的值
cout<<x<<endl;
cout<<y<<endl;
return 0;
}
b 引用不能单独存在
课程很好,我喜欢
指针的权限较大,常量赋给指针,应该const style const *p=&a;
int getMax(int a, int b)
{ return a>b?a:b;}
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(numArr[0],numArr[2])<<endl;
cout<<getMax(numArr,3)<<endl;
}本地GCC是通过的啊怎么搞的?
一样的程序 在VS2010中运行出结果了 在这里就各种问题 怎么回事?
正好用上了 出的很及时 学完数据结构用
感谢慕课!!!!!!!
老师的ppt真是用心至极啊
说的真好,呵呵
类型 *&指针引用名 =指针
int main(void)
{
//定义int数组并初始化
int numArr[3] = {3, 8, 6};

//自动调用int getMax(int a, int b)
cout << getMax(numArr[0], numArr[2]) << endl;

//自动调用返回数组中最大值的函数返回数组中的最大值
cout << getMax(numArr,3) << endl;
return 0;
}
int getMax(int arr[],int count )
{
//定义一个变量并获取数组的第一个元素
int maxNum=arr[0];
for(int i = 1; i < count; i++)
{
//比较变量与下一个元素的大小
if(arr[i]>maxNum)
{
//如果数组中的元素比maxNum大,则获取数组中的值
maxNum=arr[i];
}
}
return maxNum;
}
课程须知
本课程是C++初级课程 熟练掌握C语言开发语言基础语法
老师告诉你能学到什么?
1、C++语言引用的魅力 2、C++语言const的用法 3、C++语言函数默认值及函数重载 4、C++语言内存管理

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消