3. Pointing to a Pointer
A pointer pointing to a pointer. Will the given code compile correctly?
int main(){
int x, y;
x = &(y); y = &(x);
return 0;
}
Pick ONE option
Compiler error
Yes, possible, the code would compile fine
Would compile fine, but the pointers will not point to each other
Clear Selection