Why A does not equal B? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
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; }

23rd Jul 2018, 8:57 PM
Yelyzaveta Al-Dara
0 Antworten