Zongshichao

Results 1 issues of Zongshichao

> const指针必须进行初始化,且const指针的值不能修改。 `#include using namespace std; int main(){ int num=0; int * const ptr=# //const指针必须初始化!且const指针的值不能修改 int * t = # *t = 1; cout