自考新教材-p58_3
Posted duanqibo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自考新教材-p58_3相关的知识,希望对你有一定的参考价值。
源程序:
#include <iostream>
using namespace std;
int main()
{
const int x = 5, y = 6;
const int *p = &x;
p = const_cast<int *>(&y);
cout << *p << endl;
system("pause");
return 1;
}
运行结果:
以上是关于自考新教材-p58_3的主要内容,如果未能解决你的问题,请参考以下文章