CodePudding
Home
front end
Back-end
Net
Software design
Enterprise
Blockchain
Mobile
Software engineering
database
OS
other
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!
Page link:
https//www.codepudding.com/Backend/105287.html
Prev:
Please the great god, god, rookie came in to discuss
Next:
MethodValidationPostProcessor start SPRINGBOOT always prompt the following error
Tags:
C + + language
Related
Links:
CodePudding