我是靠谱客的博主 粗心背包,这篇文章主要介绍C 进阶常量const,现在分享给大家,希望可以做个参考。

#include <malloc.h>
#include <string.h>
#include <ctype.h>
#include "stdio.h"

/**
 * const 常量只读
 * 只读的指针  只读的内存空间
 *
 * @return
 */
int main(){
    const int a;
    int const b;

    const char *c;
    char *const d;
    const char *conste;

    return 0;


}

C 进阶学习笔记汇总

最后

以上就是粗心背包最近收集整理的关于C 进阶常量const的全部内容,更多相关C内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(111)

评论列表共有 0 条评论

立即
投稿
返回
顶部