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