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 virtual functions in c++?
Difference between const char* p and char const* p?
What is a class definition?
What does asterisk mean in c++?
Explain what is class definition in c++ ?
Can we change the basic meaning of an operator in c++?
What is "map" in STL?
what is data Abstraction
Can you sort a set c++?
Does there exist any other function which can be used to convert an integer or a float to a string?
What do nonglobal variables default to a) auto b) register c) static
What is time h in c++?