#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内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复