C/C++培训
达内IT学院
400-996-5531
const的用法
#include <stdio.h>
//游戏、不想被其他人修改自己写的代码,要用const
int main()
{
const int a=1000;
//a=200;//a属于常量,不能修改
int b=10000,c=20;
const int* p=&b;//常量指针
//*p=1;//不能通过其目标去修改
p=&c;
printf("%d\n",*p);
int* const p1=&b;//指针常量
//p1=&c;//不能通过其地址去修改
*p1=1000000;
printf("%d\n",*p1);
const int* const p2=&b;//常量指针常量
//*p2=300;//不能通过其目标去修改
//p2=&c;//不能通过其地址去修改
return 0;
}
模拟计算机寻找某个文件
#include <stdio.h>
int main()
{
char st[20];//相当于新建一个文件夹
char* ps;
int i,j=0;//i用来循环遍历我们的文件夹,j用来统计文件出现了多少次
printf("请输入一个字符串:\n");
ps=st;//指向数组的首地址
scanf("%s",ps);
for(i=0;ps[i]!='\0';i++)//文件夹的遍历
if(ps[i]=='7')
printf("文件夹中出现‘7’字符%d次\n",++j);
if(j==0)
printf("文件夹中没有‘7’字符\n");
printf("文件夹中共出现‘7’字符%d次\n",j);
system("pause");//暂停 getch() 等待输入
return 0;
}
填写下面表单即可预约申请免费试听!怕钱不够?可就业挣钱后再付学费! 怕学不会?助教全程陪读,随时解惑!担心就业?一地学习,可全国推荐就业!
Copyright © 京ICP备08000853号-56 京公网安备 11010802029508号 达内时代科技集团有限公司 版权所有
Tedu.cn All Rights Reserved