跳转至

翁恺c语言

指针常数和常数指针#

constant pointer vs pointer to a constant

int i =1;
const* int p =&i;
int const *p=&i;

指针运算#