Home > Back-end >  Why would the pointer reference error?
Why would the pointer reference error?

Time:03-21

Procedure 1:
Int main (void) {
Char * j;
Const char * & amp; H=j;
return 0;
}
Results: error!


Program 2:
Int main (void) {
Char j;
Const char & amp; H=j;
return 0;
}
Results: no error!
  • Related