when i try the code below :
#include <iostream>
using namespace std;
int a = 3;
int b = 4;
int c = 5;
int * pA = &a;
int * pB = &b;
int * pC = &c;
int * abc[] = {pA,pB,pC};
int main()
{
cout << abc[*pA] << endl;
return 0;
}
i get the following output :
20000e50
What does that mean?