const关键字用来作甚?const是一个类型修饰符.常见的类型修饰符有哪些? short long unsigned signed static autoextern register 定义一个变量. (1)类型描述符中如果有多个关键字,他们出现的位置不影响对变量的限制. short int i; int short i; const int a; int const a;//上面两个是一样的. (2) const int *a; int* const a; int const* const…