#include "stdafx.h"
using namespace std;
int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
int a[5] = {1, 2, 3, 4, 5};
int* pb = &a[3];
cout << (-2)[pb] << endl;
return 0;
}
이 코드의 결과는?
#include "stdafx.h"
using namespace std;
int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
int a[5] = {1, 2, 3, 4, 5};
int* pb = &a[3];
cout << (-2)[pb] << endl;
return 0;
}
이 코드의 결과는?