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 |
Explain the benefits of proper inheritance.
Explain method of creating object in C++ ?
How can you specify a class in C++?
Explain what is oop?
What is c++ mutable?
1.Between 100 and 999 are some numbers that have the characteristics that if you cube the individual digits and sum together you will get the same number. 2. A program that can accept as input an integer and output the equivalent of that number in words.
What is == in programming?
What is the use of setfill in c++?
What are C++ inline functions?
declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator
Will the following program execute?
What is doubly linked list in c++?