编辑代码

#include <iostream>
using namespace std;
const 
int main() 
{
    int a;
    int *p;
    a=10;
    p=&a;
    cout<<*p;
	return 0;
}