问题遇到的现象和发生背景
下面是我碰到的问题,虽然可以避免这种写法,但是我还是非常想知道这些在C语言标准中哪儿有说明,是属于那一块的知识不知道看什么解决问题,请求同志帮忙。
用代码块功能插入代码,请勿粘贴截图
int a,b,c;// a, b, c均为int
int * a,b,c;//a为int*,b, c为int
volatile int a,b,c; //a为volatile int,那么b,c呢
const int a,b,c; //a为const int,那么b,c呢
int const a,b,c;//a为const int,那么b,c呢