Is there any problem with the following:
char *a=NULL; char& p = *a;?
Answer / neelam saini
The result is undefined. You should never do this. A reference must always refer to some object.
| Is This Answer Correct ? | 0 Yes | 0 No |
what are the events occur in intr activated on interrupt vector table
What is a singleton class c++?
What operators can you overload in c++?
Explain the volatile and mutable keywords.
What is the maximum combined length of command line arguments including the space between adjacent arguments?
What is a manipulator in c++?
What is RTRT tool?can it be used for automation?can it work on packet PC?
How compile and run c++ program in turbo c++?
what is Member Functions in Classes?
What is virtual base class?
What is the difference between Pointer and a Reference? When you would use them?
Define a nested class.