首页 > 其他 > 详细

C提高_day03_const小专题

时间:2015-11-12 19:55:09      阅读:324      评论:0      收藏:0      [点我收藏+]

const int a;     //代表整型变量a不能被修改

int const b;

 

const char *c;  //看const 是放在*的左边还是右边 看const是修饰指针变量,还是修饰所指向的内存空变量

char * const d; char buf[100]

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void main()
{
    const int a=10;
    //a=11;
    int *p;
    {
        p=&a;
        *p=100;        //通过指针可以修改a的值
        printf("a:%d \n",a);
    }

        system("pause");
        return;
}
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void getmem1(char *p)
{
    //p=1;
    //p=3;
    //
    p[1]=a;
    
    return;
}

void getmem2(char * const p)
{
    p=1;
    p=3;
    //
    p[1]=a;
    
    return;
}

void main()
{
    char *p1= NULL;
    const char *p2= NULL;
    p2=1;
    printf("helllo...\n");
    system("pause");
    return;
}

C提高_day03_const小专题

原文:http://www.cnblogs.com/zhesun/p/4959860.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!