0
Why A does not equal B?
#include <iostream> using namespace std; int main() { int A=1, B=1; int *pA=&A; int *pB=&B; *pA++; (*pB)++; cout<<(A==B); return 0; }
1 Antwort
#include <iostream> using namespace std; int main() { int A=1, B=1; int *pA=&A; int *pB=&B; *pA++; (*pB)++; cout<<(A==B); return 0; }