You are viewing a single comment's thread. Return to all comments →
I am new at coding and I don't understand pointers very well, is there any source so I can understand better...
// Complete this function int refa = *a; //referance for a and b int refb = *b; if (refa > refb) { *b = refa - refb; } else { //a < b *b = refb - refa; } *a = refa + refb;
Seems like cookies are disabled on this browser, please enable them to open this website
Pointer
You are viewing a single comment's thread. Return to all comments →
I am new at coding and I don't understand pointers very well, is there any source so I can understand better...