请找出下面程序中有哪些错误
发布于 2022-03-02 15:49:33
请找出下面程序中有哪些错误:
int main(){ int i = 10 int j = 1 const int *p1//(1) int const *p2 = &i //(2) p2 = &j//(3) int *const p3 = &i//(4) *p3 = 20//(5) *p2 = 30//(6) p3 = &j//(7) return 0 }
登录后免费查看答案
关注者
0
被浏览
25