指针的左值和右值

// ConsoleApplication1.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include 
#include 
using namespace std;


int _tmain(int argc, _TCHAR* argv[])
{

    int aa = 46;
    int *pp = &aa;
    cout << *pp << endl;   

    *pp = 99;
    cout << aa << endl;

    system("pause");
    return 0;
}

打印结果:
指针的左值和右值_第1张图片



FR:海涛高软(hunk Xu) QQ技术交流群:386476712

你可能感兴趣的:(C++基础)